annotate lisp/custom/auto-autoloads.el @ 173:8eaf7971accc r20-3b13

Import from CVS: tag r20-3b13
author cvs
date Mon, 13 Aug 2007 09:49:09 +0200
parents 929b76928fce
children e121b013d1f0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
2 (if (not (featurep 'custom-autoloads))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
3 (progn
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
4
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5 ;;;### (autoloads (customize-menu-create custom-menu-create custom-save-all customize-save-customized customize-browse custom-buffer-create-other-window custom-buffer-create customize-apropos-groups customize-apropos-faces customize-apropos-options customize-apropos customize-saved customize-customized customize-face-other-window customize-face customize-option-other-window customize-option customize-group-other-window customize-group customize customize-save-variable customize-set-variable customize-set-value) "cus-edit" "custom/cus-edit.el")
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
6
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
7 (autoload 'customize-set-value "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
8 Set VARIABLE to VALUE. VALUE is a Lisp object.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
9
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
10 If VARIABLE has a `variable-interactive' property, that is used as if
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
11 it were the arg to `interactive' (which see) to interactively read the value.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
12
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
13 If VARIABLE has a `custom-type' property, it must be a widget and the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
14 `:prompt-value' property of that widget will be used for reading the value." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
15
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
16 (autoload 'customize-set-variable "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
17 Set the default for VARIABLE to VALUE. VALUE is a Lisp object.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
18
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
19 If VARIABLE has a `custom-set' property, that is used for setting
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
20 VARIABLE, otherwise `set-default' is used.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
21
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
22 The `customized-value' property of the VARIABLE will be set to a list
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
23 with a quoted VALUE as its sole list member.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
24
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
25 If VARIABLE has a `variable-interactive' property, that is used as if
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
26 it were the arg to `interactive' (which see) to interactively read the value.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
27
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
28 If VARIABLE has a `custom-type' property, it must be a widget and the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
29 `:prompt-value' property of that widget will be used for reading the value. " t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
30
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
31 (autoload 'customize-save-variable "cus-edit" "\
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
32 Set the default for VARIABLE to VALUE, and save it for future sessions.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
33 If VARIABLE has a `custom-set' property, that is used for setting
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
34 VARIABLE, otherwise `set-default' is used.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
35
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
36 The `customized-value' property of the VARIABLE will be set to a list
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
37 with a quoted VALUE as its sole list member.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
38
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
39 If VARIABLE has a `variable-interactive' property, that is used as if
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
40 it were the arg to `interactive' (which see) to interactively read the value.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
41
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
42 If VARIABLE has a `custom-type' property, it must be a widget and the
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
43 `:prompt-value' property of that widget will be used for reading the value. " t nil)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
44
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
45 (autoload 'customize "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
46 Select a customization buffer which you can use to set user options.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
47 User options are structured into \"groups\".
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
48 Initially the top-level group `Emacs' and its immediate subgroups
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
49 are shown; the contents of those subgroups are initially hidden." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
50
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
51 (autoload 'customize-group "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
52 Customize GROUP, which must be a customization group." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
53
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
54 (autoload 'customize-group-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
55 Customize SYMBOL, which must be a customization group." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
56
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
57 (defalias 'customize-variable 'customize-option)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
58
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
59 (autoload 'customize-option "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
60 Customize SYMBOL, which must be a user option variable." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
61
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
62 (defalias 'customize-variable-other-window 'customize-option-other-window)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
63
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
64 (autoload 'customize-option-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
65 Customize SYMBOL, which must be a user option variable.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
66 Show the buffer in another window, but don't select it." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
67
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
68 (autoload 'customize-face "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
69 Customize SYMBOL, which should be a face name or nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
70 If SYMBOL is nil, customize all faces." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
71
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
72 (autoload 'customize-face-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
73 Show customization buffer for FACE in other window." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
74
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
75 (autoload 'customize-customized "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
76 Customize all user options set since the last save in this session." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
77
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
78 (autoload 'customize-saved "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
79 Customize all already saved user options." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
80
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
81 (autoload 'customize-apropos "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
82 Customize all user options matching REGEXP.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
83 If ALL is `options', include only options.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
84 If ALL is `faces', include only faces.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
85 If ALL is `groups', include only groups.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
86 If ALL is t (interactively, with prefix arg), include options which are not
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
87 user-settable, as well as faces and groups." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
88
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
89 (autoload 'customize-apropos-options "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
90 Customize all user options matching REGEXP.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
91 With prefix arg, include options which are not user-settable." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
92
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
93 (autoload 'customize-apropos-faces "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
94 Customize all user faces matching REGEXP." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
95
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
96 (autoload 'customize-apropos-groups "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
97 Customize all user groups matching REGEXP." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
98
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
99 (autoload 'custom-buffer-create "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
100 Create a buffer containing OPTIONS.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
101 Optional NAME is the name of the buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
102 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
103 SYMBOL is a customization option, and WIDGET is a widget for editing
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
104 that option." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
105
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
106 (autoload 'custom-buffer-create-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
107 Create a buffer containing OPTIONS.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
108 Optional NAME is the name of the buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
109 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
110 SYMBOL is a customization option, and WIDGET is a widget for editing
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
111 that option." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
112
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
113 (autoload 'customize-browse "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
114 Create a tree browser for the customize hierarchy." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
115
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
116 (defcustom custom-file (if (boundp 'emacs-user-extension-dir) (concat "~" init-file-user emacs-user-extension-dir "options.el") "~/.emacs") "File used for storing customization information.\nIf you change this from the default \"~/.emacs\" you need to\nexplicitly load that file for the settings to take effect." :type 'file :group 'customize)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
117
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
118 (autoload 'customize-save-customized "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
119 Save all user options which have been set in this session." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
120
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
121 (autoload 'custom-save-all "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
122 Save all customizations in `custom-file'." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
123
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
124 (autoload 'custom-menu-create "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
125 Create menu for customization group SYMBOL.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
126 The menu is in a format applicable to `easy-menu-define'." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
127
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
128 (autoload 'customize-menu-create "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
129 Return a customize menu for customization group SYMBOL.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
130 If optional NAME is given, use that as the name of the menu.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
131 Otherwise the menu will be named `Customize'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
132 The format is suitable for use with `easy-menu-define'." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
133
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
134 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
135
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
136 ;;;### (autoloads (custom-set-faces custom-initialize-frame custom-declare-face) "cus-face" "custom/cus-face.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
137
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
138 (autoload 'custom-declare-face "cus-face" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
139 Like `defface', but FACE is evaluated as a normal argument." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
140
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
141 (autoload 'custom-initialize-frame "cus-face" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
142 Initialize local faces for FRAME if necessary.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
143 If FRAME is missing or nil, the first member of (frame-list) is used." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
144
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
145 (autoload 'custom-set-faces "cus-face" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
146 Initialize faces according to user preferences.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
147 The arguments should be a list where each entry has the form:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
148
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
149 (FACE SPEC [NOW])
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
150
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
151 SPEC will be stored as the saved value for FACE. If NOW is present
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
152 and non-nil, FACE will also be created according to SPEC.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
153
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
154 See `defface' for the format of SPEC." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
155
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
156 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
157
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
158 ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse widget-browse-at) "wid-browse" "custom/wid-browse.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
159
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
160 (autoload 'widget-browse-at "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
161 Browse the widget under point." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
162
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
163 (autoload 'widget-browse "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
164 Create a widget browser for WIDGET." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
165
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
166 (autoload 'widget-browse-other-window "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
167 Show widget browser for WIDGET in other window." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
168
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
169 (autoload 'widget-minor-mode "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
170 Togle minor mode for traversing widgets.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
171 With arg, turn widget mode on if and only if arg is positive." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
172
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
173 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
174
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
175 ;;;### (autoloads (widget-delete widget-create widget-prompt-value widget-apply) "wid-edit" "custom/wid-edit.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
176
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
177 (autoload 'widget-apply "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
178 Apply the value of WIDGET's PROPERTY to the widget itself.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
179 ARGS are passed as extra arguments to the function." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
180
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
181 (autoload 'widget-prompt-value "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
182 Prompt for a value matching WIDGET, using PROMPT.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
183 The current value is assumed to be VALUE, unless UNBOUND is non-nil." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
184
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
185 (autoload 'widget-create "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
186 Create widget of TYPE.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
187 The optional ARGS are additional keyword arguments." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
188
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
189 (autoload 'widget-delete "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
190 Delete WIDGET." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
191
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
192 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
193
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
194 (provide 'custom-autoloads)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
195 ))