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