annotate lisp/custom/auto-autoloads.el @ 195:a2f645c6b9f8 r20-3b24

Import from CVS: tag r20-3b24
author cvs
date Mon, 13 Aug 2007 09:59:05 +0200
parents e121b013d1f0
children acd284d43ca1
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
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
4 ;;;### (autoloads (Custom-make-dependencies) "cus-dep" "custom/cus-dep.el")
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
5
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
6 (autoload 'Custom-make-dependencies "cus-dep" "\
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
7 Extract custom dependencies from .el files in SUBDIRS.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
8 SUBDIRS is a list of directories. If it is nil, the command-line
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
9 arguments are used. If it is a string, only that directory is
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
10 processed. This function is especially useful in batch mode.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
11
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
12 Batch usage: xemacs -batch -l cus-dep.el -f Custom-make-dependencies DIRS" t nil)
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
13
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
14 ;;;***
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
15
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
16 ;;;### (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-variable customize-other-window 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
17
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
18 (autoload 'customize-set-value "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
19 Set VARIABLE to VALUE. VALUE is a Lisp object.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
20
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
21 If VARIABLE has a `variable-interactive' property, that is used as if
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
22 it were the arg to `interactive' (which see) to interactively read the value.
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 `custom-type' property, it must be a widget and the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
25 `: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
26
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
27 (autoload 'customize-set-variable "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
28 Set the default for VARIABLE to VALUE. VALUE is a Lisp object.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
29
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
30 If VARIABLE has a `custom-set' property, that is used for setting
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
31 VARIABLE, otherwise `set-default' is used.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
32
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
33 The `customized-value' property of the VARIABLE will be set to a list
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
34 with a quoted VALUE as its sole list member.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
35
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
36 If VARIABLE has a `variable-interactive' property, that is used as if
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
37 it were the arg to `interactive' (which see) to interactively read the value.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
38
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
39 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
40 `: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
41
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
42 (autoload 'customize-save-variable "cus-edit" "\
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
43 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
44 If VARIABLE has a `custom-set' property, that is used for setting
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
45 VARIABLE, otherwise `set-default' is used.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
46
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
47 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
48 with a quoted VALUE as its sole list member.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
49
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
50 If VARIABLE has a `variable-interactive' property, that is used as if
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
51 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
52
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
53 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
54 `: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
55
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
56 (autoload 'customize "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
57 Select a customization buffer which you can use to set user options.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
58 User options are structured into \"groups\".
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
59 The default group is `Emacs'." t nil)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
60
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
61 (defalias 'customize-group 'customize)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
62
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
63 (autoload 'customize-other-window "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
64 Customize SYMBOL, which must be a customization group." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
65
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
66 (defalias 'customize-group-other-window 'customize-other-window)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
67
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
68 (defalias 'customize-option 'customize-variable)
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
69
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
70 (autoload 'customize-variable "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
71 Customize SYMBOL, which must be a user option variable." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
72
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
73 (defalias 'customize-variable-other-window 'customize-option-other-window)
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-option-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
76 Customize SYMBOL, which must be a user option variable.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
77 Show the buffer in another window, but don't select it." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
78
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
79 (autoload 'customize-face "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
80 Customize SYMBOL, which should be a face name or nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
81 If SYMBOL is nil, customize all faces." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
82
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
83 (autoload 'customize-face-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
84 Show customization buffer for FACE in other window." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
85
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
86 (autoload 'customize-customized "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
87 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
88
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
89 (autoload 'customize-saved "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
90 Customize all already saved user options." 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 "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
93 Customize all user options matching REGEXP.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
94 If ALL is `options', include only options.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
95 If ALL is `faces', include only faces.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
96 If ALL is `groups', include only groups.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
97 If ALL is t (interactively, with prefix arg), include options which are not
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
98 user-settable, as well as faces and groups." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
99
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
100 (autoload 'customize-apropos-options "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
101 Customize all user options matching REGEXP.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
102 With prefix arg, include options which are not user-settable." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
103
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
104 (autoload 'customize-apropos-faces "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
105 Customize all user faces matching REGEXP." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
106
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
107 (autoload 'customize-apropos-groups "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
108 Customize all user groups matching REGEXP." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
109
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
110 (autoload 'custom-buffer-create "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
111 Create a buffer containing OPTIONS.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
112 Optional NAME is the name of the buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
113 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
114 SYMBOL is a customization option, and WIDGET is a widget for editing
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
115 that option." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
116
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
117 (autoload 'custom-buffer-create-other-window "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
118 Create a buffer containing OPTIONS.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
119 Optional NAME is the name of the buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
120 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
121 SYMBOL is a customization option, and WIDGET is a widget for editing
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
122 that option." 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 'customize-browse "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
125 Create a tree browser for the customize hierarchy." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
126
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
127 (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
128
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
129 (autoload 'customize-save-customized "cus-edit" "\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
130 Save all user options which have been set in this session." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
131
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
132 (autoload 'custom-save-all "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
133 Save all customizations in `custom-file'." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
134
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
135 (autoload 'custom-menu-create "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
136 Create menu for customization group SYMBOL.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
137 The menu is in a format applicable to `easy-menu-define'." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
138
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
139 (autoload 'customize-menu-create "cus-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
140 Return a customize menu for customization group SYMBOL.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
141 If optional NAME is given, use that as the name of the menu.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
142 Otherwise the menu will be named `Customize'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
143 The format is suitable for use with `easy-menu-define'." 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 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
146
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
147 ;;;### (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
148
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
149 (defcustom frame-background-mode nil "*The brightness of the background.\nSet this to the symbol dark if your background color is dark, light if\nyour background is light, or nil (default) if you want Emacs to\nexamine the brightness for you." :group 'faces :type '(choice (choice-item dark) (choice-item light) (choice-item :tag "Auto" nil)))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
150
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
151 (defcustom initialize-face-resources t "If non nil, allow X resources to initialize face properties.\nThis only affects faces declared with `defface', and only X11 frames." :group 'faces :type 'boolean)
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
152
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
153 (autoload 'custom-declare-face "cus-face" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
154 Like `defface', but FACE is evaluated as a normal argument." 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 (autoload 'custom-initialize-frame "cus-face" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
157 Initialize local faces for FRAME if necessary.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
158 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
159
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
160 (autoload 'custom-set-faces "cus-face" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
161 Initialize faces according to user preferences.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
162 The arguments should be a list where each entry has the form:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
164 (FACE SPEC [NOW])
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
165
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
166 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
167 and non-nil, FACE will also be created according to SPEC.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
168
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
169 See `defface' for the format of SPEC." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
170
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 ;;;### (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
174
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
175 (autoload 'widget-browse-at "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
176 Browse the widget under point." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
177
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
178 (autoload 'widget-browse "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
179 Create a widget browser for WIDGET." t 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-browse-other-window "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
182 Show widget browser for WIDGET in other window." t 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-minor-mode "wid-browse" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
185 Togle minor mode for traversing widgets.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
186 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
187
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
188 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
189
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 183
diff changeset
190 ;;;### (autoloads (widget-delete widget-create widget-prompt-value) "wid-edit" "custom/wid-edit.el")
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
191
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
192 (autoload 'widget-prompt-value "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
193 Prompt for a value matching WIDGET, using PROMPT.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
194 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
195
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
196 (autoload 'widget-create "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
197 Create widget of TYPE.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
198 The optional ARGS are additional keyword arguments." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
199
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
200 (autoload 'widget-delete "wid-edit" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
201 Delete WIDGET." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
202
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
203 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
204
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
205 (provide 'custom-autoloads)