]> code.delx.au - gnu-emacs/blob - lisp/custom.el
273c67dc66da2bcf7ce06601e4dc2d4f7d5229e5
[gnu-emacs] / lisp / custom.el
1 ;;; custom.el --- tools for declaring and initializing options
2 ;;
3 ;; Copyright (C) 1996, 1997, 1999, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
7 ;; Maintainer: FSF
8 ;; Keywords: help, faces
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26 ;;
27 ;; This file only contains the code needed to declare and initialize
28 ;; user options. The code to customize options is autoloaded from
29 ;; `cus-edit.el' and is documented in the Emacs Lisp Reference manual.
30
31 ;; The code implementing face declarations is in `cus-face.el'.
32
33 ;;; Code:
34
35 (require 'widget)
36
37 (defvar custom-define-hook nil
38 ;; Customize information for this option is in `cus-edit.el'.
39 "Hook called after defining each customize option.")
40
41 (defvar custom-dont-initialize nil
42 "Non-nil means `defcustom' should not initialize the variable.
43 That is used for the sake of `custom-make-dependencies'.
44 Users should not set it.")
45
46 (defvar custom-current-group-alist nil
47 "Alist of (FILE . GROUP) indicating the current group to use for FILE.")
48
49 ;;; The `defcustom' Macro.
50
51 (defun custom-initialize-default (symbol value)
52 "Initialize SYMBOL with VALUE.
53 This will do nothing if symbol already has a default binding.
54 Otherwise, if symbol has a `saved-value' property, it will evaluate
55 the car of that and use it as the default binding for symbol.
56 Otherwise, VALUE will be evaluated and used as the default binding for
57 symbol."
58 (unless (default-boundp symbol)
59 ;; Use the saved value if it exists, otherwise the standard setting.
60 (set-default symbol (eval (if (get symbol 'saved-value)
61 (car (get symbol 'saved-value))
62 value)))))
63
64 (defun custom-initialize-set (symbol value)
65 "Initialize SYMBOL based on VALUE.
66 If the symbol doesn't have a default binding already,
67 then set it using its `:set' function (or `set-default' if it has none).
68 The value is either the value in the symbol's `saved-value' property,
69 if any, or VALUE."
70 (unless (default-boundp symbol)
71 (funcall (or (get symbol 'custom-set) 'set-default)
72 symbol
73 (eval (if (get symbol 'saved-value)
74 (car (get symbol 'saved-value))
75 value)))))
76
77 (defun custom-initialize-reset (symbol value)
78 "Initialize SYMBOL based on VALUE.
79 Set the symbol, using its `:set' function (or `set-default' if it has none).
80 The value is either the symbol's current value
81 \(as obtained using the `:get' function), if any,
82 or the value in the symbol's `saved-value' property if any,
83 or (last of all) VALUE."
84 (funcall (or (get symbol 'custom-set) 'set-default)
85 symbol
86 (cond ((default-boundp symbol)
87 (funcall (or (get symbol 'custom-get) 'default-value)
88 symbol))
89 ((get symbol 'saved-value)
90 (eval (car (get symbol 'saved-value))))
91 (t
92 (eval value)))))
93
94 (defun custom-initialize-changed (symbol value)
95 "Initialize SYMBOL with VALUE.
96 Like `custom-initialize-reset', but only use the `:set' function if
97 not using the standard setting.
98 For the standard setting, use `set-default'."
99 (cond ((default-boundp symbol)
100 (funcall (or (get symbol 'custom-set) 'set-default)
101 symbol
102 (funcall (or (get symbol 'custom-get) 'default-value)
103 symbol)))
104 ((get symbol 'saved-value)
105 (funcall (or (get symbol 'custom-set) 'set-default)
106 symbol
107 (eval (car (get symbol 'saved-value)))))
108 (t
109 (set-default symbol (eval value)))))
110
111 (defvar custom-delayed-init-variables nil
112 "List of variables whose initialization is pending.")
113
114 (defun custom-initialize-delay (symbol value)
115 "Delay initialization of SYMBOL to the next Emacs start.
116 This is used in files that are preloaded (or for autoloaded
117 variables), so that the initialization is done in the run-time
118 context rather than the build-time context. This also has the
119 side-effect that the (delayed) initialization is performed with
120 the :set function.
121
122 For variables in preloaded files, you can simply use this
123 function for the :initialize property. For autoloaded variables,
124 you will also need to add an autoload stanza calling this
125 function, and another one setting the standard-value property.
126 See `send-mail-function' in sendmail.el for an example."
127 ;; Until the var is actually initialized, it is kept unbound.
128 ;; This seemed to be at least as good as setting it to an arbitrary
129 ;; value like nil (evaluating `value' is not an option because it
130 ;; may have undesirable side-effects).
131 (push symbol custom-delayed-init-variables))
132
133 (defun custom-declare-variable (symbol default doc &rest args)
134 "Like `defcustom', but SYMBOL and DEFAULT are evaluated as normal arguments.
135 DEFAULT should be an expression to evaluate to compute the default value,
136 not the default value itself.
137
138 DEFAULT is stored as SYMBOL's standard value, in SYMBOL's property
139 `standard-value'. At the same time, SYMBOL's property `force-value' is
140 set to nil, as the value is no longer rogue."
141 (put symbol 'standard-value (purecopy (list default)))
142 ;; Maybe this option was rogue in an earlier version. It no longer is.
143 (when (get symbol 'force-value)
144 (put symbol 'force-value nil))
145 (when doc
146 (if (keywordp doc)
147 (error "Doc string is missing")
148 (put symbol 'variable-documentation doc)))
149 (let ((initialize 'custom-initialize-reset)
150 (requests nil))
151 (unless (memq :group args)
152 (custom-add-to-group (custom-current-group) symbol 'custom-variable))
153 (while args
154 (let ((arg (car args)))
155 (setq args (cdr args))
156 (unless (symbolp arg)
157 (error "Junk in args %S" args))
158 (let ((keyword arg)
159 (value (car args)))
160 (unless args
161 (error "Keyword %s is missing an argument" keyword))
162 (setq args (cdr args))
163 (cond ((eq keyword :initialize)
164 (setq initialize value))
165 ((eq keyword :set)
166 (put symbol 'custom-set value))
167 ((eq keyword :get)
168 (put symbol 'custom-get value))
169 ((eq keyword :require)
170 (push value requests))
171 ((eq keyword :risky)
172 (put symbol 'risky-local-variable value))
173 ((eq keyword :safe)
174 (put symbol 'safe-local-variable value))
175 ((eq keyword :type)
176 (put symbol 'custom-type (purecopy value)))
177 ((eq keyword :options)
178 (if (get symbol 'custom-options)
179 ;; Slow safe code to avoid duplicates.
180 (mapc (lambda (option)
181 (custom-add-option symbol option))
182 value)
183 ;; Fast code for the common case.
184 (put symbol 'custom-options (copy-sequence value))))
185 (t
186 (custom-handle-keyword symbol keyword value
187 'custom-variable))))))
188 (put symbol 'custom-requests requests)
189 ;; Do the actual initialization.
190 (unless custom-dont-initialize
191 (funcall initialize symbol default)))
192 (push symbol current-load-list)
193 (run-hooks 'custom-define-hook)
194 symbol)
195
196 (defmacro defcustom (symbol value doc &rest args)
197 "Declare SYMBOL as a customizable variable that defaults to VALUE.
198 DOC is the variable documentation.
199
200 Neither SYMBOL nor VALUE need to be quoted.
201 If SYMBOL is not already bound, initialize it to VALUE.
202 The remaining arguments should have the form
203
204 [KEYWORD VALUE]...
205
206 The following keywords are meaningful:
207
208 :type VALUE should be a widget type for editing the symbol's value.
209 :options VALUE should be a list of valid members of the widget type.
210 :initialize
211 VALUE should be a function used to initialize the
212 variable. It takes two arguments, the symbol and value
213 given in the `defcustom' call. The default is
214 `custom-initialize-reset'.
215 :set VALUE should be a function to set the value of the symbol.
216 It takes two arguments, the symbol to set and the value to
217 give it. The default choice of function is `set-default'.
218 :get VALUE should be a function to extract the value of symbol.
219 The function takes one argument, a symbol, and should return
220 the current value for that symbol. The default choice of function
221 is `default-value'.
222 :require
223 VALUE should be a feature symbol. If you save a value
224 for this option, then when your `.emacs' file loads the value,
225 it does (require VALUE) first.
226 :risky Set SYMBOL's `risky-local-variable' property to VALUE.
227 :safe Set SYMBOL's `safe-local-variable' property to VALUE.
228
229 The following common keywords are also meaningful.
230
231 :group VALUE should be a customization group.
232 Add SYMBOL (or FACE with `defface') to that group.
233 :link LINK-DATA
234 Include an external link after the documentation string for this
235 item. This is a sentence containing an active field which
236 references some other documentation.
237
238 There are several alternatives you can use for LINK-DATA:
239
240 (custom-manual INFO-NODE)
241 Link to an Info node; INFO-NODE is a string which specifies
242 the node name, as in \"(emacs)Top\".
243
244 (info-link INFO-NODE)
245 Like `custom-manual' except that the link appears in the
246 customization buffer with the Info node name.
247
248 (url-link URL)
249 Link to a web page; URL is a string which specifies the URL.
250
251 (emacs-commentary-link LIBRARY)
252 Link to the commentary section of LIBRARY.
253
254 (emacs-library-link LIBRARY)
255 Link to an Emacs Lisp LIBRARY file.
256
257 (file-link FILE)
258 Link to FILE.
259
260 (function-link FUNCTION)
261 Link to the documentation of FUNCTION.
262
263 (variable-link VARIABLE)
264 Link to the documentation of VARIABLE.
265
266 (custom-group-link GROUP)
267 Link to another customization GROUP.
268
269 You can specify the text to use in the customization buffer by
270 adding `:tag NAME' after the first element of the LINK-DATA; for
271 example, (info-link :tag \"foo\" \"(emacs)Top\") makes a link to the
272 Emacs manual which appears in the buffer as `foo'.
273
274 An item can have more than one external link; however, most items
275 have none at all.
276 :version
277 VALUE should be a string specifying that the variable was
278 first introduced, or its default value was changed, in Emacs
279 version VERSION.
280 :package-version
281 VALUE should be a list with the form (PACKAGE . VERSION)
282 specifying that the variable was first introduced, or its
283 default value was changed, in PACKAGE version VERSION. This
284 keyword takes priority over :version. The PACKAGE and VERSION
285 must appear in the alist `customize-package-emacs-version-alist'.
286 Since PACKAGE must be unique and the user might see it in an
287 error message, a good choice is the official name of the
288 package, such as MH-E or Gnus.
289 :tag LABEL
290 Use LABEL, a string, instead of the item's name, to label the item
291 in customization menus and buffers.
292 :load FILE
293 Load file FILE (a string) before displaying this customization
294 item. Loading is done with `load', and only if the file is
295 not already loaded.
296 :set-after VARIABLES
297 Specifies that SYMBOL should be set after the list of variables
298 VARIABLES when both have been customized.
299
300 If SYMBOL has a local binding, then this form affects the local
301 binding. This is normally not what you want. Thus, if you need
302 to load a file defining variables with this form, or with
303 `defvar' or `defconst', you should always load that file
304 _outside_ any bindings for these variables. \(`defvar' and
305 `defconst' behave similarly in this respect.)
306
307 See Info node `(elisp) Customization' in the Emacs Lisp manual
308 for more information."
309 (declare (doc-string 3) (debug (name body)))
310 ;; It is better not to use backquote in this file,
311 ;; because that makes a bootstrapping problem
312 ;; if you need to recompile all the Lisp files using interpreted code.
313 (nconc (list 'custom-declare-variable
314 (list 'quote symbol)
315 (list 'quote value)
316 doc)
317 args))
318
319 ;;; The `defface' Macro.
320
321 (defmacro defface (face spec doc &rest args)
322 "Declare FACE as a customizable face that defaults to SPEC.
323 FACE does not need to be quoted.
324
325 Third argument DOC is the face documentation.
326
327 If FACE has been set with `custom-set-faces', set the face attributes
328 as specified by that function, otherwise set the face attributes
329 according to SPEC.
330
331 The remaining arguments should have the form
332
333 [KEYWORD VALUE]...
334
335 For a list of valid keywords, see the common keywords listed in
336 `defcustom'.
337
338 SPEC should be an alist of the form ((DISPLAY ATTS)...).
339
340 In the first element, DISPLAY can be `default'. The ATTS in that
341 element then act as defaults for all the following elements.
342
343 Aside from that, DISPLAY specifies conditions to match some or
344 all frames. For each frame, the first element of SPEC where the
345 DISPLAY conditions are satisfied is the one that applies to that
346 frame. The ATTRs in this element take effect, and the following
347 elements are ignored, on that frame.
348
349 In the last element, DISPLAY can be t. That element applies to a
350 frame if none of the previous elements (except the `default' if
351 any) did.
352
353 ATTS is a list of face attributes followed by their values:
354 (ATTR VALUE ATTR VALUE...)
355
356 The possible attributes are `:family', `:width', `:height', `:weight',
357 `:slant', `:underline', `:overline', `:strike-through', `:box',
358 `:foreground', `:background', `:stipple', `:inverse-video', and `:inherit'.
359
360 DISPLAY can be `default' (only in the first element), the symbol
361 t (only in the last element) to match all frames, or an alist of
362 conditions of the form \(REQ ITEM...). For such an alist to
363 match a frame, each of the conditions must be satisfied, meaning
364 that the REQ property of the frame must match one of the
365 corresponding ITEMs. These are the defined REQ values:
366
367 `type' (the value of `window-system')
368 Under X, in addition to the values `window-system' can take,
369 `motif', `lucid', `gtk' and `x-toolkit' are allowed, and match when
370 the Motif toolkit, Lucid toolkit, GTK toolkit or any X toolkit is in use.
371
372 `class' (the frame's color support)
373 Should be one of `color', `grayscale', or `mono'.
374
375 `background' (what color is used for the background text)
376 Should be one of `light' or `dark'.
377
378 `min-colors' (the minimum number of colors the frame should support)
379 Should be an integer, it is compared with the result of
380 `display-color-cells'.
381
382 `supports' (only match frames that support the specified face attributes)
383 Should be a list of face attributes. See the documentation for
384 the function `display-supports-face-attributes-p' for more
385 information on exactly how testing is done.
386
387 See Info node `(elisp) Customization' in the Emacs Lisp manual
388 for more information."
389 (declare (doc-string 3))
390 ;; It is better not to use backquote in this file,
391 ;; because that makes a bootstrapping problem
392 ;; if you need to recompile all the Lisp files using interpreted code.
393 (nconc (list 'custom-declare-face (list 'quote face) spec doc) args))
394
395 ;;; The `defgroup' Macro.
396
397 (defun custom-current-group ()
398 (cdr (assoc load-file-name custom-current-group-alist)))
399
400 (defun custom-declare-group (symbol members doc &rest args)
401 "Like `defgroup', but SYMBOL is evaluated as a normal argument."
402 (while members
403 (apply 'custom-add-to-group symbol (car members))
404 (setq members (cdr members)))
405 (when doc
406 ;; This text doesn't get into DOC.
407 (put symbol 'group-documentation (purecopy doc)))
408 (while args
409 (let ((arg (car args)))
410 (setq args (cdr args))
411 (unless (symbolp arg)
412 (error "Junk in args %S" args))
413 (let ((keyword arg)
414 (value (car args)))
415 (unless args
416 (error "Keyword %s is missing an argument" keyword))
417 (setq args (cdr args))
418 (cond ((eq keyword :prefix)
419 (put symbol 'custom-prefix (purecopy value)))
420 (t
421 (custom-handle-keyword symbol keyword value
422 'custom-group))))))
423 ;; Record the group on the `current' list.
424 (let ((elt (assoc load-file-name custom-current-group-alist)))
425 (if elt (setcdr elt symbol)
426 (push (cons (purecopy load-file-name) symbol)
427 custom-current-group-alist)))
428 (run-hooks 'custom-define-hook)
429 symbol)
430
431 (defmacro defgroup (symbol members doc &rest args)
432 "Declare SYMBOL as a customization group containing MEMBERS.
433 SYMBOL does not need to be quoted.
434
435 Third argument DOC is the group documentation. This should be a short
436 description of the group, beginning with a capital and ending with
437 a period. Words other than the first should not be capitalized, if they
438 are not usually written so.
439
440 MEMBERS should be an alist of the form ((NAME WIDGET)...) where
441 NAME is a symbol and WIDGET is a widget for editing that symbol.
442 Useful widgets are `custom-variable' for editing variables,
443 `custom-face' for edit faces, and `custom-group' for editing groups.
444
445 The remaining arguments should have the form
446
447 [KEYWORD VALUE]...
448
449 For a list of valid keywords, see the common keywords listed in
450 `defcustom'.
451
452 See Info node `(elisp) Customization' in the Emacs Lisp manual
453 for more information."
454 (declare (doc-string 3))
455 ;; It is better not to use backquote in this file,
456 ;; because that makes a bootstrapping problem
457 ;; if you need to recompile all the Lisp files using interpreted code.
458 (nconc (list 'custom-declare-group (list 'quote symbol) members doc) args))
459
460 (defun custom-add-to-group (group option widget)
461 "To existing GROUP add a new OPTION of type WIDGET.
462 If there already is an entry for OPTION and WIDGET, nothing is done."
463 (let ((members (get group 'custom-group))
464 (entry (list option widget)))
465 (unless (member entry members)
466 (put group 'custom-group (nconc members (list entry))))))
467
468 (defun custom-group-of-mode (mode)
469 "Return the custom group corresponding to the major or minor MODE.
470 If no such group is found, return nil."
471 (or (get mode 'custom-mode-group)
472 (if (or (get mode 'custom-group)
473 (and (string-match "-mode\\'" (symbol-name mode))
474 (get (setq mode (intern (substring (symbol-name mode)
475 0 (match-beginning 0))))
476 'custom-group)))
477 mode)))
478
479 ;;; Properties.
480
481 (defun custom-handle-all-keywords (symbol args type)
482 "For customization option SYMBOL, handle keyword arguments ARGS.
483 Third argument TYPE is the custom option type."
484 (unless (memq :group args)
485 (custom-add-to-group (custom-current-group) symbol type))
486 (while args
487 (let ((arg (car args)))
488 (setq args (cdr args))
489 (unless (symbolp arg)
490 (error "Junk in args %S" args))
491 (let ((keyword arg)
492 (value (car args)))
493 (unless args
494 (error "Keyword %s is missing an argument" keyword))
495 (setq args (cdr args))
496 (custom-handle-keyword symbol keyword value type)))))
497
498 (defun custom-handle-keyword (symbol keyword value type)
499 "For customization option SYMBOL, handle KEYWORD with VALUE.
500 Fourth argument TYPE is the custom option type."
501 (if purify-flag
502 (setq value (purecopy value)))
503 (cond ((eq keyword :group)
504 (custom-add-to-group value symbol type))
505 ((eq keyword :version)
506 (custom-add-version symbol value))
507 ((eq keyword :package-version)
508 (custom-add-package-version symbol value))
509 ((eq keyword :link)
510 (custom-add-link symbol value))
511 ((eq keyword :load)
512 (custom-add-load symbol value))
513 ((eq keyword :tag)
514 (put symbol 'custom-tag value))
515 ((eq keyword :set-after)
516 (custom-add-dependencies symbol value))
517 (t
518 (error "Unknown keyword %s" keyword))))
519
520 (defun custom-add-dependencies (symbol value)
521 "To the custom option SYMBOL, add dependencies specified by VALUE.
522 VALUE should be a list of symbols. For each symbol in that list,
523 this specifies that SYMBOL should be set after the specified symbol, if
524 both appear in constructs like `custom-set-variables'."
525 (unless (listp value)
526 (error "Invalid custom dependency `%s'" value))
527 (let* ((deps (get symbol 'custom-dependencies))
528 (new-deps deps))
529 (while value
530 (let ((dep (car value)))
531 (unless (symbolp dep)
532 (error "Invalid custom dependency `%s'" dep))
533 (unless (memq dep new-deps)
534 (setq new-deps (cons dep new-deps)))
535 (setq value (cdr value))))
536 (unless (eq deps new-deps)
537 (put symbol 'custom-dependencies new-deps))))
538
539 (defun custom-add-option (symbol option)
540 "To the variable SYMBOL add OPTION.
541
542 If SYMBOL's custom type is a hook, OPTION should be a hook member.
543 If SYMBOL's custom type is an alist, OPTION specifies a symbol
544 to offer to the user as a possible key in the alist.
545 For other custom types, this has no effect."
546 (let ((options (get symbol 'custom-options)))
547 (unless (member option options)
548 (put symbol 'custom-options (cons option options)))))
549 (defalias 'custom-add-frequent-value 'custom-add-option)
550
551 (defun custom-add-link (symbol widget)
552 "To the custom option SYMBOL add the link WIDGET."
553 (let ((links (get symbol 'custom-links)))
554 (unless (member widget links)
555 (put symbol 'custom-links (cons (purecopy widget) links)))))
556
557 (defun custom-add-version (symbol version)
558 "To the custom option SYMBOL add the version VERSION."
559 (put symbol 'custom-version (purecopy version)))
560
561 (defun custom-add-package-version (symbol version)
562 "To the custom option SYMBOL add the package version VERSION."
563 (put symbol 'custom-package-version (purecopy version)))
564
565 (defun custom-add-load (symbol load)
566 "To the custom option SYMBOL add the dependency LOAD.
567 LOAD should be either a library file name, or a feature name."
568 (let ((loads (get symbol 'custom-loads)))
569 (unless (member load loads)
570 (put symbol 'custom-loads (cons (purecopy load) loads)))))
571
572 (defun custom-autoload (symbol load &optional noset)
573 "Mark SYMBOL as autoloaded custom variable and add dependency LOAD.
574 If NOSET is non-nil, don't bother autoloading LOAD when setting the variable."
575 (put symbol 'custom-autoload (if noset 'noset t))
576 (custom-add-load symbol load))
577
578 ;; This test is also in the C code of `user-variable-p'.
579 (defun custom-variable-p (variable)
580 "Return non-nil if VARIABLE is a custom variable.
581 This recursively follows aliases."
582 (setq variable (indirect-variable variable))
583 (or (get variable 'standard-value)
584 (get variable 'custom-autoload)))
585
586 (defun custom-note-var-changed (variable)
587 "Inform Custom that VARIABLE has been set (changed).
588 VARIABLE is a symbol that names a user option.
589 The result is that the change is treated as having been made through Custom."
590 (put variable 'customized-value (list (custom-quote (eval variable)))))
591
592 \f
593 ;;; Custom Themes
594
595 ;;; Loading files needed to customize a symbol.
596 ;;; This is in custom.el because menu-bar.el needs it for toggle cmds.
597
598 (defvar custom-load-recursion nil
599 "Hack to avoid recursive dependencies.")
600
601 (defun custom-load-symbol (symbol)
602 "Load all dependencies for SYMBOL."
603 (unless custom-load-recursion
604 (let ((custom-load-recursion t))
605 ;; Load these files if not already done,
606 ;; to make sure we know all the dependencies of SYMBOL.
607 (condition-case nil
608 (require 'cus-load)
609 (error nil))
610 (condition-case nil
611 (require 'cus-start)
612 (error nil))
613 (dolist (load (get symbol 'custom-loads))
614 (cond ((symbolp load) (condition-case nil (require load) (error nil)))
615 ;; This is subsumed by the test below, but it's much faster.
616 ((assoc load load-history))
617 ;; This was just (assoc (locate-library load) load-history)
618 ;; but has been optimized not to load locate-library
619 ;; if not necessary.
620 ((let ((regexp (concat "\\(\\`\\|/\\)" (regexp-quote load)
621 "\\(\\'\\|\\.\\)"))
622 (found nil))
623 (dolist (loaded load-history)
624 (and (stringp (car loaded))
625 (string-match regexp (car loaded))
626 (setq found t)))
627 found))
628 ;; Without this, we would load cus-edit recursively.
629 ;; We are still loading it when we call this,
630 ;; and it is not in load-history yet.
631 ((equal load "cus-edit"))
632 (t (condition-case nil (load load) (error nil))))))))
633 \f
634 (defvar custom-local-buffer nil
635 "Non-nil, in a Customization buffer, means customize a specific buffer.
636 If this variable is non-nil, it should be a buffer,
637 and it means customize the local bindings of that buffer.
638 This variable is a permanent local, and it normally has a local binding
639 in every Customization buffer.")
640 (put 'custom-local-buffer 'permanent-local t)
641
642 (defun custom-set-default (variable value)
643 "Default :set function for a customizable variable.
644 Normally, this sets the default value of VARIABLE to VALUE,
645 but if `custom-local-buffer' is non-nil,
646 this sets the local binding in that buffer instead."
647 (if custom-local-buffer
648 (with-current-buffer custom-local-buffer
649 (set variable value))
650 (set-default variable value)))
651
652 (defun custom-set-minor-mode (variable value)
653 ":set function for minor mode variables.
654 Normally, this sets the default value of VARIABLE to nil if VALUE
655 is nil and to t otherwise,
656 but if `custom-local-buffer' is non-nil,
657 this sets the local binding in that buffer instead."
658 (if custom-local-buffer
659 (with-current-buffer custom-local-buffer
660 (funcall variable (if value 1 0)))
661 (funcall variable (if value 1 0))))
662
663 (defun custom-quote (sexp)
664 "Quote SEXP if it is not self quoting."
665 (if (or (memq sexp '(t nil))
666 (keywordp sexp)
667 (and (listp sexp)
668 (memq (car sexp) '(lambda)))
669 (stringp sexp)
670 (numberp sexp)
671 (vectorp sexp)
672 ;;; (and (fboundp 'characterp)
673 ;;; (characterp sexp))
674 )
675 sexp
676 (list 'quote sexp)))
677
678 (defun customize-mark-to-save (symbol)
679 "Mark SYMBOL for later saving.
680
681 If the default value of SYMBOL is different from the standard value,
682 set the `saved-value' property to a list whose car evaluates to the
683 default value. Otherwise, set it to nil.
684
685 To actually save the value, call `custom-save-all'.
686
687 Return non-nil if the `saved-value' property actually changed."
688 (custom-load-symbol symbol)
689 (let* ((get (or (get symbol 'custom-get) 'default-value))
690 (value (funcall get symbol))
691 (saved (get symbol 'saved-value))
692 (standard (get symbol 'standard-value))
693 (comment (get symbol 'customized-variable-comment)))
694 ;; Save default value if different from standard value.
695 (if (or (null standard)
696 (not (equal value (condition-case nil
697 (eval (car standard))
698 (error nil)))))
699 (put symbol 'saved-value (list (custom-quote value)))
700 (put symbol 'saved-value nil))
701 ;; Clear customized information (set, but not saved).
702 (put symbol 'customized-value nil)
703 ;; Save any comment that might have been set.
704 (when comment
705 (put symbol 'saved-variable-comment comment))
706 (not (equal saved (get symbol 'saved-value)))))
707
708 (defun customize-mark-as-set (symbol)
709 "Mark current value of SYMBOL as being set from customize.
710
711 If the default value of SYMBOL is different from the saved value if any,
712 or else if it is different from the standard value, set the
713 `customized-value' property to a list whose car evaluates to the
714 default value. Otherwise, set it to nil.
715
716 Return non-nil if the `customized-value' property actually changed."
717 (custom-load-symbol symbol)
718 (let* ((get (or (get symbol 'custom-get) 'default-value))
719 (value (funcall get symbol))
720 (customized (get symbol 'customized-value))
721 (old (or (get symbol 'saved-value) (get symbol 'standard-value))))
722 ;; Mark default value as set if different from old value.
723 (if (not (and old
724 (equal value (condition-case nil
725 (eval (car old))
726 (error nil)))))
727 (progn (put symbol 'customized-value (list (custom-quote value)))
728 (custom-push-theme 'theme-value symbol 'user 'set
729 (custom-quote value)))
730 (put symbol 'customized-value nil))
731 ;; Changed?
732 (not (equal customized (get symbol 'customized-value)))))
733
734 (defun custom-reevaluate-setting (symbol)
735 "Reset the value of SYMBOL by re-evaluating its saved or standard value.
736 Use the :set function to do so. This is useful for customizable options
737 that are defined before their standard value can really be computed.
738 E.g. dumped variables whose default depends on run-time information."
739 (funcall (or (get symbol 'custom-set) 'set-default)
740 symbol
741 (eval (car (or (get symbol 'saved-value) (get symbol 'standard-value))))))
742
743 \f
744 ;;; Custom Themes
745
746 ;; Custom themes are collections of settings that can be enabled or
747 ;; disabled as a unit.
748
749 ;; Each Custom theme is defined by a symbol, called the theme name.
750 ;; The `theme-settings' property of the theme name records the
751 ;; variable and face settings of the theme. This property is a list
752 ;; of elements, each of the form
753 ;;
754 ;; (PROP SYMBOL THEME VALUE)
755 ;;
756 ;; - PROP is either `theme-value' or `theme-face'
757 ;; - SYMBOL is the face or variable name
758 ;; - THEME is the theme name (redundant, but simplifies the code)
759 ;; - VALUE is an expression that gives the theme's setting for SYMBOL.
760 ;;
761 ;; The theme name also has a `theme-feature' property, whose value is
762 ;; specified when the theme is defined (see `custom-declare-theme').
763 ;; Usually, this is just a symbol named THEME-theme. This lets
764 ;; external libraries call (require 'foo-theme).
765
766 ;; In addition, each symbol (either a variable or a face) affected by
767 ;; an *enabled* theme has a `theme-value' or `theme-face' property,
768 ;; which is a list of elements each of the form
769 ;;
770 ;; (THEME VALUE)
771 ;;
772 ;; which have the same meanings as in `theme-settings'.
773 ;;
774 ;; The `theme-value' and `theme-face' lists are ordered by decreasing
775 ;; theme precedence. Thus, the first element is always the one that
776 ;; is in effect.
777
778 ;; Each theme is stored in a theme file, with filename THEME-theme.el.
779 ;; Loading a theme basically involves calling (load "THEME-theme")
780 ;; This is done by the function `load-theme'. Loading a theme
781 ;; automatically enables it.
782 ;;
783 ;; When a theme is enabled, the `theme-value' and `theme-face'
784 ;; properties for the affected symbols are set. When a theme is
785 ;; disabled, its settings are removed from the `theme-value' and
786 ;; `theme-face' properties, but the theme's own `theme-settings'
787 ;; property remains unchanged.
788
789 (defvar custom-known-themes '(user changed)
790 "Themes that have been defined with `deftheme'.
791 The default value is the list (user changed). The theme `changed'
792 contains the settings before custom themes are applied. The
793 theme `user' contains all the settings the user customized and saved.
794 Additional themes declared with the `deftheme' macro will be added to
795 the front of this list.")
796
797 (defsubst custom-theme-p (theme)
798 "Non-nil when THEME has been defined."
799 (memq theme custom-known-themes))
800
801 (defsubst custom-check-theme (theme)
802 "Check whether THEME is valid, and signal an error if it is not."
803 (unless (custom-theme-p theme)
804 (error "Unknown theme `%s'" theme)))
805
806 (defun custom-push-theme (prop symbol theme mode &optional value)
807 "Record VALUE for face or variable SYMBOL in custom theme THEME.
808 PROP is `theme-face' for a face, `theme-value' for a variable.
809
810 MODE can be either the symbol `set' or the symbol `reset'. If it is the
811 symbol `set', then VALUE is the value to use. If it is the symbol
812 `reset', then SYMBOL will be removed from THEME (VALUE is ignored).
813
814 See `custom-known-themes' for a list of known themes."
815 (unless (memq prop '(theme-value theme-face))
816 (error "Unknown theme property"))
817 (let* ((old (get symbol prop))
818 (setting (assq theme old)) ; '(theme value)
819 (theme-settings ; '(prop symbol theme value)
820 (get theme 'theme-settings)))
821 (if (eq mode 'reset)
822 ;; Remove a setting.
823 (when setting
824 (let (res)
825 (dolist (theme-setting theme-settings)
826 (if (and (eq (car theme-setting) prop)
827 (eq (cadr theme-setting) symbol))
828 (setq res theme-setting)))
829 (put theme 'theme-settings (delq res theme-settings)))
830 (put symbol prop (delq setting old)))
831 (if setting
832 ;; Alter an existing setting.
833 (let (res)
834 (dolist (theme-setting theme-settings)
835 (if (and (eq (car theme-setting) prop)
836 (eq (cadr theme-setting) symbol))
837 (setq res theme-setting)))
838 (put theme 'theme-settings
839 (cons (list prop symbol theme value)
840 (delq res theme-settings)))
841 (setcar (cdr setting) value))
842 ;; Add a new setting.
843 ;; If the user changed the value outside of Customize, we
844 ;; first save the current value to a fake theme, `changed'.
845 ;; This ensures that the user-set value comes back if the
846 ;; theme is later disabled.
847 (if (null old)
848 (if (and (eq prop 'theme-value)
849 (boundp symbol))
850 (let ((sv (get symbol 'standard-value)))
851 (unless (and sv
852 (equal (eval (car sv)) (symbol-value symbol)))
853 (setq old (list (list 'changed (symbol-value symbol))))))
854 (if (and (facep symbol)
855 (not (face-spec-match-p symbol (get symbol 'face-defface-spec))))
856 (setq old (list (list 'changed (list
857 (append '(t) (custom-face-attributes-get symbol nil)))))))))
858 (put symbol prop (cons (list theme value) old))
859 (put theme 'theme-settings
860 (cons (list prop symbol theme value)
861 theme-settings))))))
862
863 \f
864 (defun custom-set-variables (&rest args)
865 "Install user customizations of variable values specified in ARGS.
866 These settings are registered as theme `user'.
867 The arguments should each be a list of the form:
868
869 (SYMBOL EXP [NOW [REQUEST [COMMENT]]])
870
871 This stores EXP (without evaluating it) as the saved value for SYMBOL.
872 If NOW is present and non-nil, then also evaluate EXP and set
873 the default value for the SYMBOL to the value of EXP.
874
875 REQUEST is a list of features we must require in order to
876 handle SYMBOL properly.
877 COMMENT is a comment string about SYMBOL."
878 (apply 'custom-theme-set-variables 'user args))
879
880 (defun custom-theme-set-variables (theme &rest args)
881 "Initialize variables for theme THEME according to settings in ARGS.
882 Each of the arguments in ARGS should be a list of this form:
883
884 (SYMBOL EXP [NOW [REQUEST [COMMENT]]])
885
886 This stores EXP (without evaluating it) as the saved value for SYMBOL.
887 If NOW is present and non-nil, then also evaluate EXP and set
888 the default value for the SYMBOL to the value of EXP.
889
890 REQUEST is a list of features we must require in order to
891 handle SYMBOL properly.
892 COMMENT is a comment string about SYMBOL.
893
894 EXP itself is saved unevaluated as SYMBOL property `saved-value' and
895 in SYMBOL's list property `theme-value' \(using `custom-push-theme')."
896 (custom-check-theme theme)
897
898 ;; Process all the needed autoloads before anything else, so that the
899 ;; subsequent code has all the info it needs (e.g. which var corresponds
900 ;; to a minor mode), regardless of the ordering of the variables.
901 (dolist (entry args)
902 (let* ((symbol (indirect-variable (nth 0 entry))))
903 (unless (or (get symbol 'standard-value)
904 (memq (get symbol 'custom-autoload) '(nil noset)))
905 ;; This symbol needs to be autoloaded, even just for a `set'.
906 (custom-load-symbol symbol))))
907
908 ;; Move minor modes and variables with explicit requires to the end.
909 (setq args
910 (sort args
911 (lambda (a1 a2)
912 (let* ((sym1 (car a1))
913 (sym2 (car a2))
914 (1-then-2 (memq sym1 (get sym2 'custom-dependencies)))
915 (2-then-1 (memq sym2 (get sym1 'custom-dependencies))))
916 (cond ((and 1-then-2 2-then-1)
917 (error "Circular custom dependency between `%s' and `%s'"
918 sym1 sym2))
919 (2-then-1 nil)
920 ;; 1 is a dependency of 2, so needs to be set first.
921 (1-then-2)
922 ;; Put minor modes and symbols with :require last.
923 ;; Putting minor modes last ensures that the mode
924 ;; function will see other customized values rather
925 ;; than default values.
926 (t (or (nth 3 a2)
927 (eq (get sym2 'custom-set)
928 'custom-set-minor-mode))))))))
929 (while args
930 (let ((entry (car args)))
931 (if (listp entry)
932 (let* ((symbol (indirect-variable (nth 0 entry)))
933 (value (nth 1 entry))
934 (now (nth 2 entry))
935 (requests (nth 3 entry))
936 (comment (nth 4 entry))
937 set)
938 (when requests
939 (put symbol 'custom-requests requests)
940 (mapc 'require requests))
941 (setq set (or (get symbol 'custom-set) 'custom-set-default))
942 (put symbol 'saved-value (list value))
943 (put symbol 'saved-variable-comment comment)
944 (custom-push-theme 'theme-value symbol theme 'set value)
945 ;; Allow for errors in the case where the setter has
946 ;; changed between versions, say, but let the user know.
947 (condition-case data
948 (cond (now
949 ;; Rogue variable, set it now.
950 (put symbol 'force-value t)
951 (funcall set symbol (eval value)))
952 ((default-boundp symbol)
953 ;; Something already set this, overwrite it.
954 (funcall set symbol (eval value))))
955 (error
956 (message "Error setting %s: %s" symbol data)))
957 (setq args (cdr args))
958 (and (or now (default-boundp symbol))
959 (put symbol 'variable-comment comment)))
960 ;; I believe this is dead-code, because the `sort' code above would
961 ;; have burped before we could get here. --Stef
962 ;; Old format, a plist of SYMBOL VALUE pairs.
963 (message "Warning: old format `custom-set-variables'")
964 (ding)
965 (sit-for 2)
966 (let ((symbol (indirect-variable (nth 0 args)))
967 (value (nth 1 args)))
968 (put symbol 'saved-value (list value))
969 (custom-push-theme 'theme-value symbol theme 'set value))
970 (setq args (cdr (cdr args)))))))
971
972 \f
973 ;;; Defining themes.
974
975 ;; A theme file should be named `THEME-theme.el' (where THEME is the theme
976 ;; name), and found in either `custom-theme-directory' or the load path.
977 ;; It has the following format:
978 ;;
979 ;; (deftheme THEME
980 ;; DOCSTRING)
981 ;;
982 ;; (custom-theme-set-variables
983 ;; 'THEME
984 ;; [THEME-VARIABLES])
985 ;;
986 ;; (custom-theme-set-faces
987 ;; 'THEME
988 ;; [THEME-FACES])
989 ;;
990 ;; (provide-theme 'THEME)
991
992
993 ;; The IGNORED arguments to deftheme come from the XEmacs theme code, where
994 ;; they were used to supply keyword-value pairs like `:immediate',
995 ;; `:variable-reset-string', etc. We don't use any of these, so ignore them.
996
997 (defmacro deftheme (theme &optional doc &rest ignored)
998 "Declare THEME to be a Custom theme.
999 The optional argument DOC is a doc string describing the theme.
1000
1001 Any theme `foo' should be defined in a file called `foo-theme.el';
1002 see `custom-make-theme-feature' for more information."
1003 (let ((feature (custom-make-theme-feature theme)))
1004 ;; It is better not to use backquote in this file,
1005 ;; because that makes a bootstrapping problem
1006 ;; if you need to recompile all the Lisp files using interpreted code.
1007 (list 'custom-declare-theme (list 'quote theme) (list 'quote feature) doc)))
1008
1009 (defun custom-declare-theme (theme feature &optional doc &rest ignored)
1010 "Like `deftheme', but THEME is evaluated as a normal argument.
1011 FEATURE is the feature this theme provides. Normally, this is a symbol
1012 created from THEME by `custom-make-theme-feature'."
1013 (if (memq theme '(user changed))
1014 (error "Custom theme cannot be named %S" theme))
1015 (add-to-list 'custom-known-themes theme)
1016 (put theme 'theme-feature feature)
1017 (when doc (put theme 'theme-documentation doc)))
1018
1019 (defun custom-make-theme-feature (theme)
1020 "Given a symbol THEME, create a new symbol by appending \"-theme\".
1021 Store this symbol in the `theme-feature' property of THEME.
1022 Calling `provide-theme' to provide THEME actually puts `THEME-theme'
1023 into `features'.
1024
1025 This allows for a file-name convention for autoloading themes:
1026 Every theme X has a property `provide-theme' whose value is \"X-theme\".
1027 \(load-theme X) then attempts to load the file `X-theme.el'."
1028 (intern (concat (symbol-name theme) "-theme")))
1029 \f
1030 ;;; Loading themes.
1031
1032 (defcustom custom-theme-directory
1033 user-emacs-directory
1034 "Directory in which Custom theme files should be written.
1035 `load-theme' searches this directory in addition to load-path.
1036 The command `customize-create-theme' writes the files it produces
1037 into this directory."
1038 :type 'string
1039 :group 'customize
1040 :version "22.1")
1041
1042 (defun provide-theme (theme)
1043 "Indicate that this file provides THEME.
1044 This calls `provide' to provide the feature name stored in THEME's
1045 property `theme-feature' (which is usually a symbol created by
1046 `custom-make-theme-feature')."
1047 (if (memq theme '(user changed))
1048 (error "Custom theme cannot be named %S" theme))
1049 (custom-check-theme theme)
1050 (provide (get theme 'theme-feature))
1051 ;; Loading a theme also enables it.
1052 (push theme custom-enabled-themes)
1053 ;; `user' must always be the highest-precedence enabled theme.
1054 ;; Make that remain true. (This has the effect of making user settings
1055 ;; override the ones just loaded, too.)
1056 (let ((custom-enabling-themes t))
1057 (enable-theme 'user)))
1058
1059 (defun load-theme (theme)
1060 "Load a theme's settings from its file.
1061 This also enables the theme; use `disable-theme' to disable it."
1062 ;; Note we do no check for validity of the theme here.
1063 ;; This allows to pull in themes by a file-name convention
1064 (interactive "SCustom theme name: ")
1065 ;; If reloading, clear out the old theme settings.
1066 (when (custom-theme-p theme)
1067 (disable-theme theme)
1068 (put theme 'theme-settings nil)
1069 (put theme 'theme-feature nil)
1070 (put theme 'theme-documentation nil))
1071 (let ((load-path (if (file-directory-p custom-theme-directory)
1072 (cons custom-theme-directory load-path)
1073 load-path)))
1074 (load (symbol-name (custom-make-theme-feature theme)))))
1075 \f
1076 ;;; Enabling and disabling loaded themes.
1077
1078 (defvar custom-enabling-themes nil)
1079
1080 (defun enable-theme (theme)
1081 "Reenable all variable and face settings defined by THEME.
1082 The newly enabled theme gets the highest precedence (after `user').
1083 If it is already enabled, just give it highest precedence (after `user').
1084
1085 If THEME does not specify any theme settings, this tries to load
1086 the theme from its theme file, by calling `load-theme'."
1087 (interactive "SEnable Custom theme: ")
1088 (if (not (custom-theme-p theme))
1089 (load-theme theme)
1090 ;; This could use a bit of optimization -- cyd
1091 (let ((settings (get theme 'theme-settings)))
1092 (dolist (s settings)
1093 (let* ((prop (car s))
1094 (symbol (cadr s))
1095 (spec-list (get symbol prop)))
1096 (put symbol prop (cons (cddr s) (assq-delete-all theme spec-list)))
1097 (if (eq prop 'theme-value)
1098 (custom-theme-recalc-variable symbol)
1099 (custom-theme-recalc-face symbol)))))
1100 (unless (eq theme 'user)
1101 (setq custom-enabled-themes
1102 (cons theme (delq theme custom-enabled-themes)))
1103 (unless custom-enabling-themes
1104 (enable-theme 'user)))))
1105
1106 (defcustom custom-enabled-themes nil
1107 "List of enabled Custom Themes, highest precedence first.
1108
1109 This does not include the `user' theme, which is set by Customize,
1110 and always takes precedence over other Custom Themes."
1111 :group 'customize
1112 :type '(repeat symbol)
1113 :set-after '(custom-theme-directory) ; so we can find the themes
1114 :set (lambda (symbol themes)
1115 ;; Avoid an infinite loop when custom-enabled-themes is
1116 ;; defined in a theme (e.g. `user'). Enabling the theme sets
1117 ;; custom-enabled-themes, which enables the theme...
1118 (unless custom-enabling-themes
1119 (let ((custom-enabling-themes t) failures)
1120 (setq themes (delq 'user (delete-dups themes)))
1121 (if (boundp symbol)
1122 (dolist (theme (symbol-value symbol))
1123 (if (not (memq theme themes))
1124 (disable-theme theme))))
1125 (dolist (theme (reverse themes))
1126 (condition-case nil
1127 (enable-theme theme)
1128 (error (progn (push theme failures)
1129 (setq themes (delq theme themes))))))
1130 (enable-theme 'user)
1131 (custom-set-default symbol themes)
1132 (if failures
1133 (message "Failed to enable themes: %s"
1134 (mapconcat 'symbol-name failures " ")))))))
1135
1136 (defsubst custom-theme-enabled-p (theme)
1137 "Return non-nil if THEME is enabled."
1138 (memq theme custom-enabled-themes))
1139
1140 (defun disable-theme (theme)
1141 "Disable all variable and face settings defined by THEME.
1142 See `custom-enabled-themes' for a list of enabled themes."
1143 (interactive (list (intern
1144 (completing-read
1145 "Disable Custom theme: "
1146 (mapcar 'symbol-name custom-enabled-themes)
1147 nil t))))
1148 (when (custom-theme-enabled-p theme)
1149 (let ((settings (get theme 'theme-settings)))
1150 (dolist (s settings)
1151 (let* ((prop (car s))
1152 (symbol (cadr s))
1153 (spec-list (get symbol prop)))
1154 (put symbol prop (assq-delete-all theme spec-list))
1155 (if (eq prop 'theme-value)
1156 (custom-theme-recalc-variable symbol)
1157 (custom-theme-recalc-face symbol)))))
1158 (setq custom-enabled-themes
1159 (delq theme custom-enabled-themes))))
1160
1161 (defun custom-variable-theme-value (variable)
1162 "Return (list VALUE) indicating the custom theme value of VARIABLE.
1163 That is to say, it specifies what the value should be according to
1164 currently enabled custom themes.
1165
1166 This function returns nil if no custom theme specifies a value for VARIABLE."
1167 (let* ((theme-value (get variable 'theme-value)))
1168 (if theme-value
1169 (cdr (car theme-value)))))
1170
1171 (defun custom-theme-recalc-variable (variable)
1172 "Set VARIABLE according to currently enabled custom themes."
1173 (let ((valspec (custom-variable-theme-value variable)))
1174 (if valspec
1175 (put variable 'saved-value valspec)
1176 (setq valspec (get variable 'standard-value)))
1177 (if (and valspec
1178 (or (get variable 'force-value)
1179 (default-boundp variable)))
1180 (funcall (or (get variable 'custom-set) 'set-default) variable
1181 (eval (car valspec))))))
1182
1183 (defun custom-theme-recalc-face (face)
1184 "Set FACE according to currently enabled custom themes."
1185 (if (facep face)
1186 (face-spec-set face
1187 (get (or (get face 'face-alias) face)
1188 'face-override-spec))))
1189 \f
1190 ;;; XEmacs compability functions
1191
1192 ;; In XEmacs, when you reset a Custom Theme, you have to specify the
1193 ;; theme to reset it to. We just apply the next available theme, so
1194 ;; just ignore the IGNORED arguments.
1195
1196 (defun custom-theme-reset-variables (theme &rest args)
1197 "Reset some variable settings in THEME to their values in other themes.
1198 Each of the arguments ARGS has this form:
1199
1200 (VARIABLE IGNORED)
1201
1202 This means reset VARIABLE. (The argument IGNORED is ignored)."
1203 (custom-check-theme theme)
1204 (dolist (arg args)
1205 (custom-push-theme 'theme-value (car arg) theme 'reset)))
1206
1207 (defun custom-reset-variables (&rest args)
1208 "Reset the specs of some variables to their values in other themes.
1209 This creates settings in the `user' theme.
1210
1211 Each of the arguments ARGS has this form:
1212
1213 (VARIABLE IGNORED)
1214
1215 This means reset VARIABLE. (The argument IGNORED is ignored)."
1216 (apply 'custom-theme-reset-variables 'user args))
1217
1218 ;;; The End.
1219
1220 ;; Process the defcustoms for variables loaded before this file.
1221 (while custom-declare-variable-list
1222 (apply 'custom-declare-variable (car custom-declare-variable-list))
1223 (setq custom-declare-variable-list (cdr custom-declare-variable-list)))
1224
1225 (provide 'custom)
1226
1227 ;; arch-tag: 041b6116-aabe-4f9a-902d-74092bc3dab2
1228 ;;; custom.el ends here