annotate lisp/custom/auto-autoloads.el @ 183:e121b013d1f0 r20-3b18

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