ChangeLog fixes from M-x authors
[emacs.git] / lisp / custom.el
blob9c18c827d41bfc0ce7f06fbc84bcd39dd2571c9e
1 ;;; custom.el --- tools for declaring and initializing options
2 ;;
3 ;; Copyright (C) 1996-1997, 1999, 2001-2013 Free Software Foundation,
4 ;; Inc.
5 ;;
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
7 ;; Maintainer: FSF
8 ;; Keywords: help, faces
9 ;; Package: emacs
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; This file only contains the code needed to declare and initialize
29 ;; user options. The code to customize options is autoloaded from
30 ;; `cus-edit.el' and is documented in the Emacs Lisp Reference manual.
32 ;; The code implementing face declarations is in `cus-face.el'.
34 ;;; Code:
36 (require 'widget)
38 (defvar custom-define-hook nil
39 ;; Customize information for this option is in `cus-edit.el'.
40 "Hook called after defining each customize option.")
42 (defvar custom-dont-initialize nil
43 "Non-nil means `defcustom' should not initialize the variable.
44 That is used for the sake of `custom-make-dependencies'.
45 Users should not set it.")
47 (defvar custom-current-group-alist nil
48 "Alist of (FILE . GROUP) indicating the current group to use for FILE.")
50 ;;; The `defcustom' Macro.
52 (defun custom-initialize-default (symbol value)
53 "Initialize SYMBOL with VALUE.
54 This will do nothing if symbol already has a default binding.
55 Otherwise, if symbol has a `saved-value' property, it will evaluate
56 the car of that and use it as the default binding for symbol.
57 Otherwise, VALUE will be evaluated and used as the default binding for
58 symbol."
59 (eval `(defvar ,symbol ,(if (get symbol 'saved-value)
60 (car (get symbol 'saved-value))
61 value))))
63 (defun custom-initialize-set (symbol value)
64 "Initialize SYMBOL based on VALUE.
65 If the symbol doesn't have a default binding already,
66 then set it using its `:set' function (or `set-default' if it has none).
67 The value is either the value in the symbol's `saved-value' property,
68 if any, or VALUE."
69 (unless (default-boundp symbol)
70 (funcall (or (get symbol 'custom-set) 'set-default)
71 symbol
72 (eval (if (get symbol 'saved-value)
73 (car (get symbol 'saved-value))
74 value)))))
76 (defun custom-initialize-reset (symbol value)
77 "Initialize SYMBOL based on VALUE.
78 Set the symbol, using its `:set' function (or `set-default' if it has none).
79 The value is either the symbol's current value
80 \(as obtained using the `:get' function), if any,
81 or the value in the symbol's `saved-value' property if any,
82 or (last of all) VALUE."
83 (funcall (or (get symbol 'custom-set) 'set-default)
84 symbol
85 (cond ((default-boundp symbol)
86 (funcall (or (get symbol 'custom-get) 'default-value)
87 symbol))
88 ((get symbol 'saved-value)
89 (eval (car (get symbol 'saved-value))))
91 (eval value)))))
93 (defun custom-initialize-changed (symbol value)
94 "Initialize SYMBOL with VALUE.
95 Like `custom-initialize-reset', but only use the `:set' function if
96 not using the standard setting.
97 For the standard setting, use `set-default'."
98 (cond ((default-boundp symbol)
99 (funcall (or (get symbol 'custom-set) 'set-default)
100 symbol
101 (funcall (or (get symbol 'custom-get) 'default-value)
102 symbol)))
103 ((get symbol 'saved-value)
104 (funcall (or (get symbol 'custom-set) 'set-default)
105 symbol
106 (eval (car (get symbol 'saved-value)))))
108 (set-default symbol (eval value)))))
110 (defvar custom-delayed-init-variables nil
111 "List of variables whose initialization is pending.")
113 (defun custom-initialize-delay (symbol _value)
114 "Delay initialization of SYMBOL to the next Emacs start.
115 This is used in files that are preloaded (or for autoloaded
116 variables), so that the initialization is done in the run-time
117 context rather than the build-time context. This also has the
118 side-effect that the (delayed) initialization is performed with
119 the :set function.
121 For variables in preloaded files, you can simply use this
122 function for the :initialize property. For autoloaded variables,
123 you will also need to add an autoload stanza calling this
124 function, and another one setting the standard-value property.
125 Or you can wrap the defcustom in a progn, to force the autoloader
126 to include all of it." ; see eg vc-sccs-search-project-dir
127 ;; No longer true:
128 ;; "See `send-mail-function' in sendmail.el for an example."
130 ;; Until the var is actually initialized, it is kept unbound.
131 ;; This seemed to be at least as good as setting it to an arbitrary
132 ;; value like nil (evaluating `value' is not an option because it
133 ;; may have undesirable side-effects).
134 (push symbol custom-delayed-init-variables))
136 (defun custom-declare-variable (symbol default doc &rest args)
137 "Like `defcustom', but SYMBOL and DEFAULT are evaluated as normal arguments.
138 DEFAULT should be an expression to evaluate to compute the default value,
139 not the default value itself.
141 DEFAULT is stored as SYMBOL's standard value, in SYMBOL's property
142 `standard-value'. At the same time, SYMBOL's property `force-value' is
143 set to nil, as the value is no longer rogue."
144 (put symbol 'standard-value (purecopy (list default)))
145 ;; Maybe this option was rogue in an earlier version. It no longer is.
146 (when (get symbol 'force-value)
147 (put symbol 'force-value nil))
148 (if (keywordp doc)
149 (error "Doc string is missing"))
150 (let ((initialize 'custom-initialize-reset)
151 (requests nil))
152 (unless (memq :group args)
153 (custom-add-to-group (custom-current-group) symbol 'custom-variable))
154 (while args
155 (let ((arg (car args)))
156 (setq args (cdr args))
157 (unless (symbolp arg)
158 (error "Junk in args %S" args))
159 (let ((keyword arg)
160 (value (car args)))
161 (unless args
162 (error "Keyword %s is missing an argument" keyword))
163 (setq args (cdr args))
164 (cond ((eq keyword :initialize)
165 (setq initialize value))
166 ((eq keyword :set)
167 (put symbol 'custom-set value))
168 ((eq keyword :get)
169 (put symbol 'custom-get value))
170 ((eq keyword :require)
171 (push value requests))
172 ((eq keyword :risky)
173 (put symbol 'risky-local-variable value))
174 ((eq keyword :safe)
175 (put symbol 'safe-local-variable value))
176 ((eq keyword :type)
177 (put symbol 'custom-type (purecopy value)))
178 ((eq keyword :options)
179 (if (get symbol 'custom-options)
180 ;; Slow safe code to avoid duplicates.
181 (mapc (lambda (option)
182 (custom-add-option symbol option))
183 value)
184 ;; Fast code for the common case.
185 (put symbol 'custom-options (copy-sequence value))))
187 (custom-handle-keyword symbol keyword value
188 'custom-variable))))))
189 (put symbol 'custom-requests requests)
190 ;; Do the actual initialization.
191 (unless custom-dont-initialize
192 (funcall initialize symbol default)))
193 ;; Use defvar to set the docstring as well as the special-variable-p flag.
194 ;; FIXME: We should reproduce more of `defvar's behavior, such as the warning
195 ;; when the var is currently let-bound.
196 (if (not (default-boundp symbol))
197 ;; Don't use defvar to avoid setting a default-value when undesired.
198 (when doc (put symbol 'variable-documentation doc))
199 (eval `(defvar ,symbol nil ,@(when doc (list doc)))))
200 (push symbol current-load-list)
201 (run-hooks 'custom-define-hook)
202 symbol)
204 (defmacro defcustom (symbol standard doc &rest args)
205 "Declare SYMBOL as a customizable variable.
206 SYMBOL is the variable name; it should not be quoted.
207 STANDARD is an expression specifying the variable's standard
208 value. It should not be quoted. It is evaluated once by
209 `defcustom', and the value is assigned to SYMBOL if the variable
210 is unbound. The expression itself is also stored, so that
211 Customize can re-evaluate it later to get the standard value.
212 DOC is the variable documentation.
214 This macro uses `defvar' as a subroutine, which also marks the
215 variable as \"special\", so that it is always dynamically bound
216 even when `lexical-binding' is t.
218 The remaining arguments to `defcustom' should have the form
220 [KEYWORD VALUE]...
222 The following keywords are meaningful:
224 :type VALUE should be a widget type for editing the symbol's value.
225 :options VALUE should be a list of valid members of the widget type.
226 :initialize
227 VALUE should be a function used to initialize the
228 variable. It takes two arguments, the symbol and value
229 given in the `defcustom' call. The default is
230 `custom-initialize-reset'.
231 :set VALUE should be a function to set the value of the symbol
232 when using the Customize user interface.
233 It takes two arguments, the symbol to set and the value to
234 give it. The default choice of function is `set-default'.
235 :get VALUE should be a function to extract the value of symbol.
236 The function takes one argument, a symbol, and should return
237 the current value for that symbol. The default choice of function
238 is `default-value'.
239 :require
240 VALUE should be a feature symbol. If you save a value
241 for this option, then when your init file loads the value,
242 it does (require VALUE) first.
243 :set-after VARIABLES
244 Specifies that SYMBOL should be set after the list of variables
245 VARIABLES when both have been customized.
246 :risky Set SYMBOL's `risky-local-variable' property to VALUE.
247 :safe Set SYMBOL's `safe-local-variable' property to VALUE.
248 See Info node `(elisp) File Local Variables'.
250 The following common keywords are also meaningful.
252 :group VALUE should be a customization group.
253 Add SYMBOL (or FACE with `defface') to that group.
254 :link LINK-DATA
255 Include an external link after the documentation string for this
256 item. This is a sentence containing an active field which
257 references some other documentation.
259 There are several alternatives you can use for LINK-DATA:
261 (custom-manual INFO-NODE)
262 Link to an Info node; INFO-NODE is a string which specifies
263 the node name, as in \"(emacs)Top\".
265 (info-link INFO-NODE)
266 Like `custom-manual' except that the link appears in the
267 customization buffer with the Info node name.
269 (url-link URL)
270 Link to a web page; URL is a string which specifies the URL.
272 (emacs-commentary-link LIBRARY)
273 Link to the commentary section of LIBRARY.
275 (emacs-library-link LIBRARY)
276 Link to an Emacs Lisp LIBRARY file.
278 (file-link FILE)
279 Link to FILE.
281 (function-link FUNCTION)
282 Link to the documentation of FUNCTION.
284 (variable-link VARIABLE)
285 Link to the documentation of VARIABLE.
287 (custom-group-link GROUP)
288 Link to another customization GROUP.
290 You can specify the text to use in the customization buffer by
291 adding `:tag NAME' after the first element of the LINK-DATA; for
292 example, (info-link :tag \"foo\" \"(emacs)Top\") makes a link to the
293 Emacs manual which appears in the buffer as `foo'.
295 An item can have more than one external link; however, most items
296 have none at all.
297 :version
298 VALUE should be a string specifying that the variable was
299 first introduced, or its default value was changed, in Emacs
300 version VERSION.
301 :package-version
302 VALUE should be a list with the form (PACKAGE . VERSION)
303 specifying that the variable was first introduced, or its
304 default value was changed, in PACKAGE version VERSION. This
305 keyword takes priority over :version. The PACKAGE and VERSION
306 must appear in the alist `customize-package-emacs-version-alist'.
307 Since PACKAGE must be unique and the user might see it in an
308 error message, a good choice is the official name of the
309 package, such as MH-E or Gnus.
310 :tag LABEL
311 Use LABEL, a string, instead of the item's name, to label the item
312 in customization menus and buffers.
313 :load FILE
314 Load file FILE (a string) before displaying this customization
315 item. Loading is done with `load', and only if the file is
316 not already loaded.
318 If SYMBOL has a local binding, then this form affects the local
319 binding. This is normally not what you want. Thus, if you need
320 to load a file defining variables with this form, or with
321 `defvar' or `defconst', you should always load that file
322 _outside_ any bindings for these variables. \(`defvar' and
323 `defconst' behave similarly in this respect.)
325 See Info node `(elisp) Customization' in the Emacs Lisp manual
326 for more information."
327 (declare (doc-string 3) (debug (name body)))
328 ;; It is better not to use backquote in this file,
329 ;; because that makes a bootstrapping problem
330 ;; if you need to recompile all the Lisp files using interpreted code.
331 `(custom-declare-variable
332 ',symbol
333 ,(if lexical-binding ;FIXME: This is not reliable, but is all we have.
334 ;; The STANDARD arg should be an expression that evaluates to
335 ;; the standard value. The use of `eval' for it is spread
336 ;; over many different places and hence difficult to
337 ;; eliminate, yet we want to make sure that the `standard'
338 ;; expression is checked by the byte-compiler, and that
339 ;; lexical-binding is obeyed, so quote the expression with
340 ;; `lambda' rather than with `quote'.
341 ``(funcall #',(lambda () ,standard))
342 `',standard)
343 ,doc
344 ,@args))
346 ;;; The `defface' Macro.
348 (defmacro defface (face spec doc &rest args)
349 "Declare FACE as a customizable face that defaults to SPEC.
350 FACE does not need to be quoted.
352 Third argument DOC is the face documentation.
354 If FACE has been set with `custom-set-faces', set the face
355 attributes as specified by that function, otherwise set the face
356 attributes according to SPEC.
358 The remaining arguments should have the form [KEYWORD VALUE]...
359 For a list of valid keywords, see the common keywords listed in
360 `defcustom'.
362 SPEC should be an alist of the form
364 ((DISPLAY . ATTS)...)
366 where DISPLAY is a form specifying conditions to match certain
367 terminals and ATTS is a property list (ATTR VALUE ATTR VALUE...)
368 specifying face attributes and values for frames on those
369 terminals. On each terminal, the first element with a matching
370 DISPLAY specification takes effect, and the remaining elements in
371 SPEC are disregarded.
373 As a special exception, in the first element of SPEC, DISPLAY can
374 be the special value `default'. Then the ATTS in that element
375 act as defaults for all the following elements.
377 For backward compatibility, elements of SPEC can be written
378 as (DISPLAY ATTS) instead of (DISPLAY . ATTS).
380 Each DISPLAY can have the following values:
381 - `default' (only in the first element).
382 - The symbol t, which matches all terminals.
383 - An alist of conditions. Each alist element must have the form
384 (REQ ITEM...). A matching terminal must satisfy each
385 specified condition by matching one of its ITEMs. Each REQ
386 must be one of the following:
387 - `type' (the terminal type).
388 Each ITEM must be one of the values returned by
389 `window-system'. Under X, additional allowed values are
390 `motif', `lucid', `gtk' and `x-toolkit'.
391 - `class' (the terminal's color support).
392 Each ITEM should be one of `color', `grayscale', or `mono'.
393 - `background' (what color is used for the background text)
394 Each ITEM should be one of `light' or `dark'.
395 - `min-colors' (the minimum number of supported colors)
396 Each ITEM should be an integer, which is compared with the
397 result of `display-color-cells'.
398 - `supports' (match terminals supporting certain attributes).
399 Each ITEM should be a list of face attributes. See
400 `display-supports-face-attributes-p' for more information on
401 exactly how testing is done.
403 In the ATTS property list, possible attributes are `:family',
404 `:width', `:height', `:weight', `:slant', `:underline',
405 `:overline', `:strike-through', `:box', `:foreground',
406 `:background', `:stipple', `:inverse-video', and `:inherit'.
408 See Info node `(elisp) Faces' in the Emacs Lisp manual for more
409 information."
410 (declare (doc-string 3))
411 ;; It is better not to use backquote in this file,
412 ;; because that makes a bootstrapping problem
413 ;; if you need to recompile all the Lisp files using interpreted code.
414 (nconc (list 'custom-declare-face (list 'quote face) spec doc) args))
416 ;;; The `defgroup' Macro.
418 (defun custom-current-group ()
419 (cdr (assoc load-file-name custom-current-group-alist)))
421 (defun custom-declare-group (symbol members doc &rest args)
422 "Like `defgroup', but SYMBOL is evaluated as a normal argument."
423 (while members
424 (apply 'custom-add-to-group symbol (car members))
425 (setq members (cdr members)))
426 (when doc
427 ;; This text doesn't get into DOC.
428 (put symbol 'group-documentation (purecopy doc)))
429 (while args
430 (let ((arg (car args)))
431 (setq args (cdr args))
432 (unless (symbolp arg)
433 (error "Junk in args %S" args))
434 (let ((keyword arg)
435 (value (car args)))
436 (unless args
437 (error "Keyword %s is missing an argument" keyword))
438 (setq args (cdr args))
439 (cond ((eq keyword :prefix)
440 (put symbol 'custom-prefix (purecopy value)))
442 (custom-handle-keyword symbol keyword value
443 'custom-group))))))
444 ;; Record the group on the `current' list.
445 (let ((elt (assoc load-file-name custom-current-group-alist)))
446 (if elt (setcdr elt symbol)
447 (push (cons (purecopy load-file-name) symbol)
448 custom-current-group-alist)))
449 (run-hooks 'custom-define-hook)
450 symbol)
452 (defmacro defgroup (symbol members doc &rest args)
453 "Declare SYMBOL as a customization group containing MEMBERS.
454 SYMBOL does not need to be quoted.
456 Third argument DOC is the group documentation. This should be a short
457 description of the group, beginning with a capital and ending with
458 a period. Words other than the first should not be capitalized, if they
459 are not usually written so.
461 MEMBERS should be an alist of the form ((NAME WIDGET)...) where
462 NAME is a symbol and WIDGET is a widget for editing that symbol.
463 Useful widgets are `custom-variable' for editing variables,
464 `custom-face' for edit faces, and `custom-group' for editing groups.
466 The remaining arguments should have the form
468 [KEYWORD VALUE]...
470 For a list of valid keywords, see the common keywords listed in
471 `defcustom'.
473 See Info node `(elisp) Customization' in the Emacs Lisp manual
474 for more information."
475 (declare (doc-string 3))
476 ;; It is better not to use backquote in this file,
477 ;; because that makes a bootstrapping problem
478 ;; if you need to recompile all the Lisp files using interpreted code.
479 (nconc (list 'custom-declare-group (list 'quote symbol) members doc) args))
481 (defun custom-add-to-group (group option widget)
482 "To existing GROUP add a new OPTION of type WIDGET.
483 If there already is an entry for OPTION and WIDGET, nothing is done."
484 (let ((members (get group 'custom-group))
485 (entry (list option widget)))
486 (unless (member entry members)
487 (put group 'custom-group (nconc members (list entry))))))
489 (defun custom-group-of-mode (mode)
490 "Return the custom group corresponding to the major or minor MODE.
491 If no such group is found, return nil."
492 (or (get mode 'custom-mode-group)
493 (if (or (get mode 'custom-group)
494 (and (string-match "-mode\\'" (symbol-name mode))
495 (get (setq mode (intern (substring (symbol-name mode)
496 0 (match-beginning 0))))
497 'custom-group)))
498 mode)))
500 ;;; Properties.
502 (defun custom-handle-all-keywords (symbol args type)
503 "For customization option SYMBOL, handle keyword arguments ARGS.
504 Third argument TYPE is the custom option type."
505 (unless (memq :group args)
506 (custom-add-to-group (custom-current-group) symbol type))
507 (while args
508 (let ((arg (car args)))
509 (setq args (cdr args))
510 (unless (symbolp arg)
511 (error "Junk in args %S" args))
512 (let ((keyword arg)
513 (value (car args)))
514 (unless args
515 (error "Keyword %s is missing an argument" keyword))
516 (setq args (cdr args))
517 (custom-handle-keyword symbol keyword value type)))))
519 (defun custom-handle-keyword (symbol keyword value type)
520 "For customization option SYMBOL, handle KEYWORD with VALUE.
521 Fourth argument TYPE is the custom option type."
522 (if purify-flag
523 (setq value (purecopy value)))
524 (cond ((eq keyword :group)
525 (custom-add-to-group value symbol type))
526 ((eq keyword :version)
527 (custom-add-version symbol value))
528 ((eq keyword :package-version)
529 (custom-add-package-version symbol value))
530 ((eq keyword :link)
531 (custom-add-link symbol value))
532 ((eq keyword :load)
533 (custom-add-load symbol value))
534 ((eq keyword :tag)
535 (put symbol 'custom-tag value))
536 ((eq keyword :set-after)
537 (custom-add-dependencies symbol value))
539 (error "Unknown keyword %s" keyword))))
541 (defun custom-add-dependencies (symbol value)
542 "To the custom option SYMBOL, add dependencies specified by VALUE.
543 VALUE should be a list of symbols. For each symbol in that list,
544 this specifies that SYMBOL should be set after the specified symbol, if
545 both appear in constructs like `custom-set-variables'."
546 (unless (listp value)
547 (error "Invalid custom dependency `%s'" value))
548 (let* ((deps (get symbol 'custom-dependencies))
549 (new-deps deps))
550 (while value
551 (let ((dep (car value)))
552 (unless (symbolp dep)
553 (error "Invalid custom dependency `%s'" dep))
554 (unless (memq dep new-deps)
555 (setq new-deps (cons dep new-deps)))
556 (setq value (cdr value))))
557 (unless (eq deps new-deps)
558 (put symbol 'custom-dependencies new-deps))))
560 (defun custom-add-option (symbol option)
561 "To the variable SYMBOL add OPTION.
563 If SYMBOL's custom type is a hook, OPTION should be a hook member.
564 If SYMBOL's custom type is an alist, OPTION specifies a symbol
565 to offer to the user as a possible key in the alist.
566 For other custom types, this has no effect."
567 (let ((options (get symbol 'custom-options)))
568 (unless (member option options)
569 (put symbol 'custom-options (cons option options)))))
570 (defalias 'custom-add-frequent-value 'custom-add-option)
572 (defun custom-add-link (symbol widget)
573 "To the custom option SYMBOL add the link WIDGET."
574 (let ((links (get symbol 'custom-links)))
575 (unless (member widget links)
576 (put symbol 'custom-links (cons (purecopy widget) links)))))
578 (defun custom-add-version (symbol version)
579 "To the custom option SYMBOL add the version VERSION."
580 (put symbol 'custom-version (purecopy version)))
582 (defun custom-add-package-version (symbol version)
583 "To the custom option SYMBOL add the package version VERSION."
584 (put symbol 'custom-package-version (purecopy version)))
586 (defun custom-add-load (symbol load)
587 "To the custom option SYMBOL add the dependency LOAD.
588 LOAD should be either a library file name, or a feature name."
589 (let ((loads (get symbol 'custom-loads)))
590 (unless (member load loads)
591 (put symbol 'custom-loads (cons (purecopy load) loads)))))
593 (defun custom-autoload (symbol load &optional noset)
594 "Mark SYMBOL as autoloaded custom variable and add dependency LOAD.
595 If NOSET is non-nil, don't bother autoloading LOAD when setting the variable."
596 (put symbol 'custom-autoload (if noset 'noset t))
597 (custom-add-load symbol load))
599 (defun custom-variable-p (variable)
600 "Return non-nil if VARIABLE is a customizable variable.
601 A customizable variable is either (i) a variable whose property
602 list contains a non-nil `standard-value' or `custom-autoload'
603 property, or (ii) an alias for another customizable variable."
604 (when (symbolp variable)
605 (setq variable (indirect-variable variable))
606 (or (get variable 'standard-value)
607 (get variable 'custom-autoload))))
609 (define-obsolete-function-alias 'user-variable-p 'custom-variable-p "24.3")
611 (defun custom-note-var-changed (variable)
612 "Inform Custom that VARIABLE has been set (changed).
613 VARIABLE is a symbol that names a user option.
614 The result is that the change is treated as having been made through Custom."
615 (put variable 'customized-value (list (custom-quote (eval variable)))))
618 ;;; Custom Themes
620 ;;; Loading files needed to customize a symbol.
621 ;;; This is in custom.el because menu-bar.el needs it for toggle cmds.
623 (defvar custom-load-recursion nil
624 "Hack to avoid recursive dependencies.")
626 (defun custom-load-symbol (symbol)
627 "Load all dependencies for SYMBOL."
628 (unless custom-load-recursion
629 (let ((custom-load-recursion t))
630 ;; Load these files if not already done,
631 ;; to make sure we know all the dependencies of SYMBOL.
632 (condition-case nil
633 (require 'cus-load)
634 (error nil))
635 (condition-case nil
636 (require 'cus-start)
637 (error nil))
638 (dolist (load (get symbol 'custom-loads))
639 (cond ((symbolp load) (condition-case nil (require load) (error nil)))
640 ;; This is subsumed by the test below, but it's much faster.
641 ((assoc load load-history))
642 ;; This was just (assoc (locate-library load) load-history)
643 ;; but has been optimized not to load locate-library
644 ;; if not necessary.
645 ((let ((regexp (concat "\\(\\`\\|/\\)" (regexp-quote load)
646 "\\(\\'\\|\\.\\)"))
647 (found nil))
648 (dolist (loaded load-history)
649 (and (stringp (car loaded))
650 (string-match regexp (car loaded))
651 (setq found t)))
652 found))
653 ;; Without this, we would load cus-edit recursively.
654 ;; We are still loading it when we call this,
655 ;; and it is not in load-history yet.
656 ((equal load "cus-edit"))
657 (t (condition-case nil (load load) (error nil))))))))
659 (defvar custom-local-buffer nil
660 "Non-nil, in a Customization buffer, means customize a specific buffer.
661 If this variable is non-nil, it should be a buffer,
662 and it means customize the local bindings of that buffer.
663 This variable is a permanent local, and it normally has a local binding
664 in every Customization buffer.")
665 (put 'custom-local-buffer 'permanent-local t)
667 (defun custom-set-default (variable value)
668 "Default :set function for a customizable variable.
669 Normally, this sets the default value of VARIABLE to VALUE,
670 but if `custom-local-buffer' is non-nil,
671 this sets the local binding in that buffer instead."
672 (if custom-local-buffer
673 (with-current-buffer custom-local-buffer
674 (set variable value))
675 (set-default variable value)))
677 (defun custom-set-minor-mode (variable value)
678 ":set function for minor mode variables.
679 Normally, this sets the default value of VARIABLE to nil if VALUE
680 is nil and to t otherwise,
681 but if `custom-local-buffer' is non-nil,
682 this sets the local binding in that buffer instead."
683 (if custom-local-buffer
684 (with-current-buffer custom-local-buffer
685 (funcall variable (if value 1 0)))
686 (funcall variable (if value 1 0))))
688 (defun custom-quote (sexp)
689 "Quote SEXP if it is not self quoting."
690 (if (or (memq sexp '(t nil))
691 (keywordp sexp)
692 (and (listp sexp)
693 (memq (car sexp) '(lambda)))
694 (stringp sexp)
695 (numberp sexp)
696 (vectorp sexp)
697 ;;; (and (fboundp 'characterp)
698 ;;; (characterp sexp))
700 sexp
701 (list 'quote sexp)))
703 (defun customize-mark-to-save (symbol)
704 "Mark SYMBOL for later saving.
706 If the default value of SYMBOL is different from the standard value,
707 set the `saved-value' property to a list whose car evaluates to the
708 default value. Otherwise, set it to nil.
710 To actually save the value, call `custom-save-all'.
712 Return non-nil if the `saved-value' property actually changed."
713 (custom-load-symbol symbol)
714 (let* ((get (or (get symbol 'custom-get) 'default-value))
715 (value (funcall get symbol))
716 (saved (get symbol 'saved-value))
717 (standard (get symbol 'standard-value))
718 (comment (get symbol 'customized-variable-comment)))
719 ;; Save default value if different from standard value.
720 (if (or (null standard)
721 (not (equal value (condition-case nil
722 (eval (car standard))
723 (error nil)))))
724 (put symbol 'saved-value (list (custom-quote value)))
725 (put symbol 'saved-value nil))
726 ;; Clear customized information (set, but not saved).
727 (put symbol 'customized-value nil)
728 ;; Save any comment that might have been set.
729 (when comment
730 (put symbol 'saved-variable-comment comment))
731 (not (equal saved (get symbol 'saved-value)))))
733 (defun customize-mark-as-set (symbol)
734 "Mark current value of SYMBOL as being set from customize.
736 If the default value of SYMBOL is different from the saved value if any,
737 or else if it is different from the standard value, set the
738 `customized-value' property to a list whose car evaluates to the
739 default value. Otherwise, set it to nil.
741 Return non-nil if the `customized-value' property actually changed."
742 (custom-load-symbol symbol)
743 (let* ((get (or (get symbol 'custom-get) 'default-value))
744 (value (funcall get symbol))
745 (customized (get symbol 'customized-value))
746 (old (or (get symbol 'saved-value) (get symbol 'standard-value))))
747 ;; Mark default value as set if different from old value.
748 (if (not (and old
749 (equal value (condition-case nil
750 (eval (car old))
751 (error nil)))))
752 (progn (put symbol 'customized-value (list (custom-quote value)))
753 (custom-push-theme 'theme-value symbol 'user 'set
754 (custom-quote value)))
755 (put symbol 'customized-value nil))
756 ;; Changed?
757 (not (equal customized (get symbol 'customized-value)))))
759 (defun custom-reevaluate-setting (symbol)
760 "Reset the value of SYMBOL by re-evaluating its saved or standard value.
761 Use the :set function to do so. This is useful for customizable options
762 that are defined before their standard value can really be computed.
763 E.g. dumped variables whose default depends on run-time information."
764 (funcall (or (get symbol 'custom-set) 'set-default)
765 symbol
766 (eval (car (or (get symbol 'saved-value) (get symbol 'standard-value))))))
769 ;;; Custom Themes
771 ;; Custom themes are collections of settings that can be enabled or
772 ;; disabled as a unit.
774 ;; Each Custom theme is defined by a symbol, called the theme name.
775 ;; The `theme-settings' property of the theme name records the
776 ;; variable and face settings of the theme. This property is a list
777 ;; of elements, each of the form
779 ;; (PROP SYMBOL THEME VALUE)
781 ;; - PROP is either `theme-value' or `theme-face'
782 ;; - SYMBOL is the face or variable name
783 ;; - THEME is the theme name (redundant, but simplifies the code)
784 ;; - VALUE is an expression that gives the theme's setting for SYMBOL.
786 ;; The theme name also has a `theme-feature' property, whose value is
787 ;; specified when the theme is defined (see `custom-declare-theme').
788 ;; Usually, this is just a symbol named THEME-theme. This lets
789 ;; external libraries call (require 'foo-theme).
791 ;; In addition, each symbol (either a variable or a face) affected by
792 ;; an *enabled* theme has a `theme-value' or `theme-face' property,
793 ;; which is a list of elements each of the form
795 ;; (THEME VALUE)
797 ;; which have the same meanings as in `theme-settings'.
799 ;; The `theme-value' and `theme-face' lists are ordered by decreasing
800 ;; theme precedence. Thus, the first element is always the one that
801 ;; is in effect.
803 ;; Each theme is stored in a theme file, with filename THEME-theme.el.
804 ;; Loading a theme basically involves calling (load "THEME-theme")
805 ;; This is done by the function `load-theme'. Loading a theme
806 ;; automatically enables it.
808 ;; When a theme is enabled, the `theme-value' and `theme-face'
809 ;; properties for the affected symbols are set. When a theme is
810 ;; disabled, its settings are removed from the `theme-value' and
811 ;; `theme-face' properties, but the theme's own `theme-settings'
812 ;; property remains unchanged.
814 (defvar custom-known-themes '(user changed)
815 "Themes that have been defined with `deftheme'.
816 The default value is the list (user changed). The theme `changed'
817 contains the settings before custom themes are applied. The theme
818 `user' contains all the settings the user customized and saved.
819 Additional themes declared with the `deftheme' macro will be added
820 to the front of this list.")
822 (defsubst custom-theme-p (theme)
823 "Non-nil when THEME has been defined."
824 (memq theme custom-known-themes))
826 (defsubst custom-check-theme (theme)
827 "Check whether THEME is valid, and signal an error if it is not."
828 (unless (custom-theme-p theme)
829 (error "Unknown theme `%s'" theme)))
831 (defun custom-push-theme (prop symbol theme mode &optional value)
832 "Record VALUE for face or variable SYMBOL in custom theme THEME.
833 PROP is `theme-face' for a face, `theme-value' for a variable.
835 MODE can be either the symbol `set' or the symbol `reset'. If it is the
836 symbol `set', then VALUE is the value to use. If it is the symbol
837 `reset', then SYMBOL will be removed from THEME (VALUE is ignored).
839 See `custom-known-themes' for a list of known themes."
840 (unless (memq prop '(theme-value theme-face))
841 (error "Unknown theme property"))
842 (let* ((old (get symbol prop))
843 (setting (assq theme old)) ; '(theme value)
844 (theme-settings ; '(prop symbol theme value)
845 (get theme 'theme-settings)))
846 (cond
847 ;; Remove a setting:
848 ((eq mode 'reset)
849 (when setting
850 (let (res)
851 (dolist (theme-setting theme-settings)
852 (if (and (eq (car theme-setting) prop)
853 (eq (cadr theme-setting) symbol))
854 (setq res theme-setting)))
855 (put theme 'theme-settings (delq res theme-settings)))
856 (put symbol prop (delq setting old))))
857 ;; Alter an existing setting:
858 (setting
859 (let (res)
860 (dolist (theme-setting theme-settings)
861 (if (and (eq (car theme-setting) prop)
862 (eq (cadr theme-setting) symbol))
863 (setq res theme-setting)))
864 (put theme 'theme-settings
865 (cons (list prop symbol theme value)
866 (delq res theme-settings)))
867 (setcar (cdr setting) value)))
868 ;; Add a new setting:
870 (unless old
871 ;; If the user changed a variable outside of Customize, save
872 ;; the value to a fake theme, `changed'. If the theme is
873 ;; later disabled, we use this to bring back the old value.
875 ;; For faces, we just use `face-new-frame-defaults' to
876 ;; recompute when the theme is disabled.
877 (when (and (eq prop 'theme-value)
878 (boundp symbol))
879 (let ((sv (get symbol 'standard-value))
880 (val (symbol-value symbol)))
881 (unless (and sv (equal (eval (car sv)) val))
882 (setq old `((changed ,(custom-quote val))))))))
883 (put symbol prop (cons (list theme value) old))
884 (put theme 'theme-settings
885 (cons (list prop symbol theme value) theme-settings))))))
887 (defun custom-fix-face-spec (spec)
888 "Convert face SPEC, replacing obsolete :bold and :italic attributes.
889 Also change :reverse-video to :inverse-video."
890 (when (listp spec)
891 (if (or (memq :bold spec)
892 (memq :italic spec)
893 (memq :inverse-video spec))
894 (let (result)
895 (while spec
896 (let ((key (car spec))
897 (val (car (cdr spec))))
898 (cond ((eq key :italic)
899 (push :slant result)
900 (push (if val 'italic 'normal) result))
901 ((eq key :bold)
902 (push :weight result)
903 (push (if val 'bold 'normal) result))
904 ((eq key :reverse-video)
905 (push :inverse-video result)
906 (push val result))
908 (push key result)
909 (push val result))))
910 (setq spec (cddr spec)))
911 (nreverse result))
912 spec)))
914 (defun custom-set-variables (&rest args)
915 "Install user customizations of variable values specified in ARGS.
916 These settings are registered as theme `user'.
917 The arguments should each be a list of the form:
919 (SYMBOL EXP [NOW [REQUEST [COMMENT]]])
921 This stores EXP (without evaluating it) as the saved value for SYMBOL.
922 If NOW is present and non-nil, then also evaluate EXP and set
923 the default value for the SYMBOL to the value of EXP.
925 REQUEST is a list of features we must require in order to
926 handle SYMBOL properly.
927 COMMENT is a comment string about SYMBOL."
928 (apply 'custom-theme-set-variables 'user args))
930 (defun custom-theme-set-variables (theme &rest args)
931 "Initialize variables for theme THEME according to settings in ARGS.
932 Each of the arguments in ARGS should be a list of this form:
934 (SYMBOL EXP [NOW [REQUEST [COMMENT]]])
936 SYMBOL is the variable name, and EXP is an expression which
937 evaluates to the customized value. EXP will also be stored,
938 without evaluating it, in SYMBOL's `saved-value' property, so
939 that it can be restored via the Customize interface. It is also
940 added to the alist in SYMBOL's `theme-value' property \(by
941 calling `custom-push-theme').
943 NOW, if present and non-nil, means to install the variable's
944 value directly now, even if its `defcustom' declaration has not
945 been executed. This is for internal use only.
947 REQUEST is a list of features to `require' (which are loaded
948 prior to evaluating EXP).
950 COMMENT is a comment string about SYMBOL."
951 (custom-check-theme theme)
953 ;; Process all the needed autoloads before anything else, so that the
954 ;; subsequent code has all the info it needs (e.g. which var corresponds
955 ;; to a minor mode), regardless of the ordering of the variables.
956 (dolist (entry args)
957 (let* ((symbol (indirect-variable (nth 0 entry))))
958 (unless (or (get symbol 'standard-value)
959 (memq (get symbol 'custom-autoload) '(nil noset)))
960 ;; This symbol needs to be autoloaded, even just for a `set'.
961 (custom-load-symbol symbol))))
963 ;; Move minor modes and variables with explicit requires to the end.
964 (setq args
965 (sort args
966 (lambda (a1 a2)
967 (let* ((sym1 (car a1))
968 (sym2 (car a2))
969 (1-then-2 (memq sym1 (get sym2 'custom-dependencies)))
970 (2-then-1 (memq sym2 (get sym1 'custom-dependencies))))
971 (cond ((and 1-then-2 2-then-1)
972 (error "Circular custom dependency between `%s' and `%s'"
973 sym1 sym2))
974 (2-then-1 nil)
975 ;; 1 is a dependency of 2, so needs to be set first.
976 (1-then-2)
977 ;; Put minor modes and symbols with :require last.
978 ;; Putting minor modes last ensures that the mode
979 ;; function will see other customized values rather
980 ;; than default values.
981 (t (or (nth 3 a2)
982 (eq (get sym2 'custom-set)
983 'custom-set-minor-mode))))))))
985 (dolist (entry args)
986 (unless (listp entry)
987 (error "Incompatible Custom theme spec"))
988 (let* ((symbol (indirect-variable (nth 0 entry)))
989 (value (nth 1 entry)))
990 (custom-push-theme 'theme-value symbol theme 'set value)
991 (unless custom--inhibit-theme-enable
992 ;; Now set the variable.
993 (let* ((now (nth 2 entry))
994 (requests (nth 3 entry))
995 (comment (nth 4 entry))
996 set)
997 (when requests
998 (put symbol 'custom-requests requests)
999 (mapc 'require requests))
1000 (setq set (or (get symbol 'custom-set) 'custom-set-default))
1001 (put symbol 'saved-value (list value))
1002 (put symbol 'saved-variable-comment comment)
1003 ;; Allow for errors in the case where the setter has
1004 ;; changed between versions, say, but let the user know.
1005 (condition-case data
1006 (cond (now
1007 ;; Rogue variable, set it now.
1008 (put symbol 'force-value t)
1009 (funcall set symbol (eval value)))
1010 ((default-boundp symbol)
1011 ;; Something already set this, overwrite it.
1012 (funcall set symbol (eval value))))
1013 (error
1014 (message "Error setting %s: %s" symbol data)))
1015 (and (or now (default-boundp symbol))
1016 (put symbol 'variable-comment comment)))))))
1019 ;;; Defining themes.
1021 ;; A theme file is named `THEME-theme.el' (where THEME is the theme
1022 ;; name) found in `custom-theme-load-path'. It has this format:
1024 ;; (deftheme THEME
1025 ;; DOCSTRING)
1027 ;; (custom-theme-set-variables
1028 ;; 'THEME
1029 ;; [THEME-VARIABLES])
1031 ;; (custom-theme-set-faces
1032 ;; 'THEME
1033 ;; [THEME-FACES])
1035 ;; (provide-theme 'THEME)
1038 ;; The IGNORED arguments to deftheme come from the XEmacs theme code, where
1039 ;; they were used to supply keyword-value pairs like `:immediate',
1040 ;; `:variable-reset-string', etc. We don't use any of these, so ignore them.
1042 (defmacro deftheme (theme &optional doc &rest ignored)
1043 "Declare THEME to be a Custom theme.
1044 The optional argument DOC is a doc string describing the theme.
1046 Any theme `foo' should be defined in a file called `foo-theme.el';
1047 see `custom-make-theme-feature' for more information."
1048 (declare (doc-string 2))
1049 (let ((feature (custom-make-theme-feature theme)))
1050 ;; It is better not to use backquote in this file,
1051 ;; because that makes a bootstrapping problem
1052 ;; if you need to recompile all the Lisp files using interpreted code.
1053 (list 'custom-declare-theme (list 'quote theme) (list 'quote feature) doc)))
1055 (defun custom-declare-theme (theme feature &optional doc &rest ignored)
1056 "Like `deftheme', but THEME is evaluated as a normal argument.
1057 FEATURE is the feature this theme provides. Normally, this is a symbol
1058 created from THEME by `custom-make-theme-feature'."
1059 (unless (custom-theme-name-valid-p theme)
1060 (error "Custom theme cannot be named %S" theme))
1061 (add-to-list 'custom-known-themes theme)
1062 (put theme 'theme-feature feature)
1063 (when doc (put theme 'theme-documentation doc)))
1065 (defun custom-make-theme-feature (theme)
1066 "Given a symbol THEME, create a new symbol by appending \"-theme\".
1067 Store this symbol in the `theme-feature' property of THEME.
1068 Calling `provide-theme' to provide THEME actually puts `THEME-theme'
1069 into `features'.
1071 This allows for a file-name convention for autoloading themes:
1072 Every theme X has a property `provide-theme' whose value is \"X-theme\".
1073 \(load-theme X) then attempts to load the file `X-theme.el'."
1074 (intern (concat (symbol-name theme) "-theme")))
1076 ;;; Loading themes.
1078 (defcustom custom-theme-directory user-emacs-directory
1079 "Default user directory for storing custom theme files.
1080 The command `customize-create-theme' writes theme files into this
1081 directory. By default, Emacs searches for custom themes in this
1082 directory first---see `custom-theme-load-path'."
1083 :type 'string
1084 :group 'customize
1085 :version "22.1")
1087 (defcustom custom-theme-load-path (list 'custom-theme-directory t)
1088 "List of directories to search for custom theme files.
1089 When loading custom themes (e.g. in `customize-themes' and
1090 `load-theme'), Emacs searches for theme files in the specified
1091 order. Each element in the list should be one of the following:
1092 - the symbol `custom-theme-directory', meaning the value of
1093 `custom-theme-directory'.
1094 - the symbol t, meaning the built-in theme directory (a directory
1095 named \"themes\" in `data-directory').
1096 - a directory name (a string).
1098 Each theme file is named THEME-theme.el, where THEME is the theme
1099 name."
1100 :type '(repeat (choice (const :tag "custom-theme-directory"
1101 custom-theme-directory)
1102 (const :tag "Built-in theme directory" t)
1103 directory))
1104 :group 'customize
1105 :version "24.1")
1107 (defvar custom--inhibit-theme-enable nil
1108 "Whether the custom-theme-set-* functions act immediately.
1109 If nil, `custom-theme-set-variables' and `custom-theme-set-faces'
1110 change the current values of the given variable or face. If
1111 non-nil, they just make a record of the theme settings.")
1113 (defun provide-theme (theme)
1114 "Indicate that this file provides THEME.
1115 This calls `provide' to provide the feature name stored in THEME's
1116 property `theme-feature' (which is usually a symbol created by
1117 `custom-make-theme-feature')."
1118 (unless (custom-theme-name-valid-p theme)
1119 (error "Custom theme cannot be named %S" theme))
1120 (custom-check-theme theme)
1121 (provide (get theme 'theme-feature)))
1123 (defcustom custom-safe-themes '(default)
1124 "Themes that are considered safe to load.
1125 If the value is a list, each element should be either the SHA-256
1126 hash of a safe theme file, or the symbol `default', which stands
1127 for any theme in the built-in Emacs theme directory (a directory
1128 named \"themes\" in `data-directory').
1130 If the value is t, Emacs treats all themes as safe.
1132 This variable cannot be set in a Custom theme."
1133 :type '(choice (repeat :tag "List of safe themes"
1134 (choice string
1135 (const :tag "Built-in themes" default)))
1136 (const :tag "All themes" t))
1137 :group 'customize
1138 :risky t
1139 :version "24.1")
1141 (defun load-theme (theme &optional no-confirm no-enable)
1142 "Load Custom theme named THEME from its file.
1143 The theme file is named THEME-theme.el, in one of the directories
1144 specified by `custom-theme-load-path'.
1146 If the theme is not considered safe by `custom-safe-themes',
1147 prompt the user for confirmation before loading it. But if
1148 optional arg NO-CONFIRM is non-nil, load the theme without
1149 prompting.
1151 Normally, this function also enables THEME. If optional arg
1152 NO-ENABLE is non-nil, load the theme but don't enable it, unless
1153 the theme was already enabled.
1155 This function is normally called through Customize when setting
1156 `custom-enabled-themes'. If used directly in your init file, it
1157 should be called with a non-nil NO-CONFIRM argument, or after
1158 `custom-safe-themes' has been loaded.
1160 Return t if THEME was successfully loaded, nil otherwise."
1161 (interactive
1162 (list
1163 (intern (completing-read "Load custom theme: "
1164 (mapcar 'symbol-name
1165 (custom-available-themes))))
1166 nil nil))
1167 (unless (custom-theme-name-valid-p theme)
1168 (error "Invalid theme name `%s'" theme))
1169 ;; If THEME is already enabled, re-enable it after loading, even if
1170 ;; NO-ENABLE is t.
1171 (if no-enable
1172 (setq no-enable (not (custom-theme-enabled-p theme))))
1173 ;; If reloading, clear out the old theme settings.
1174 (when (custom-theme-p theme)
1175 (disable-theme theme)
1176 (put theme 'theme-settings nil)
1177 (put theme 'theme-feature nil)
1178 (put theme 'theme-documentation nil))
1179 (let ((fn (locate-file (concat (symbol-name theme) "-theme.el")
1180 (custom-theme--load-path)
1181 '("" "c")))
1182 hash)
1183 (unless fn
1184 (error "Unable to find theme file for `%s'" theme))
1185 (with-temp-buffer
1186 (insert-file-contents fn)
1187 (setq hash (secure-hash 'sha256 (current-buffer)))
1188 ;; Check file safety with `custom-safe-themes', prompting the
1189 ;; user if necessary.
1190 (when (or no-confirm
1191 (eq custom-safe-themes t)
1192 (and (memq 'default custom-safe-themes)
1193 (equal (file-name-directory fn)
1194 (expand-file-name "themes/" data-directory)))
1195 (member hash custom-safe-themes)
1196 (custom-theme-load-confirm hash))
1197 (let ((custom--inhibit-theme-enable t)
1198 (buffer-file-name fn)) ;For load-history.
1199 (eval-buffer))
1200 ;; Optimization: if the theme changes the `default' face, put that
1201 ;; entry first. This avoids some `frame-set-background-mode' rigmarole
1202 ;; by assigning the new background immediately.
1203 (let* ((settings (get theme 'theme-settings))
1204 (tail settings)
1205 found)
1206 (while (and tail (not found))
1207 (and (eq (nth 0 (car tail)) 'theme-face)
1208 (eq (nth 1 (car tail)) 'default)
1209 (setq found (car tail)))
1210 (setq tail (cdr tail)))
1211 (if found
1212 (put theme 'theme-settings (cons found (delq found settings)))))
1213 ;; Finally, enable the theme.
1214 (unless no-enable
1215 (enable-theme theme))
1216 t))))
1218 (defun custom-theme-load-confirm (hash)
1219 "Query the user about loading a Custom theme that may not be safe.
1220 The theme should be in the current buffer. If the user agrees,
1221 query also about adding HASH to `custom-safe-themes'."
1222 (unless noninteractive
1223 (save-window-excursion
1224 (rename-buffer "*Custom Theme*" t)
1225 (emacs-lisp-mode)
1226 (pop-to-buffer (current-buffer))
1227 (goto-char (point-min))
1228 (prog1 (when (y-or-n-p "Loading a theme can run Lisp code. Really load? ")
1229 ;; Offer to save to `custom-safe-themes'.
1230 (and (or custom-file user-init-file)
1231 (y-or-n-p "Treat this theme as safe in future sessions? ")
1232 (customize-push-and-save 'custom-safe-themes (list hash)))
1234 (quit-window)))))
1236 (defun custom-theme-name-valid-p (name)
1237 "Return t if NAME is a valid name for a Custom theme, nil otherwise.
1238 NAME should be a symbol."
1239 (and (symbolp name)
1240 name
1241 (not (or (zerop (length (symbol-name name)))
1242 (eq name 'user)
1243 (eq name 'changed)))))
1245 (defun custom-available-themes ()
1246 "Return a list of available Custom themes (symbols)."
1247 (let (sym themes)
1248 (dolist (dir (custom-theme--load-path))
1249 (when (file-directory-p dir)
1250 (dolist (file (file-expand-wildcards
1251 (expand-file-name "*-theme.el" dir) t))
1252 (setq file (file-name-nondirectory file))
1253 (and (string-match "\\`\\(.+\\)-theme.el\\'" file)
1254 (setq sym (intern (match-string 1 file)))
1255 (custom-theme-name-valid-p sym)
1256 (push sym themes)))))
1257 (nreverse (delete-dups themes))))
1259 (defun custom-theme--load-path ()
1260 (let (lpath)
1261 (dolist (f custom-theme-load-path)
1262 (cond ((eq f 'custom-theme-directory)
1263 (setq f custom-theme-directory))
1264 ((eq f t)
1265 (setq f (expand-file-name "themes" data-directory))))
1266 (if (file-directory-p f)
1267 (push f lpath)))
1268 (nreverse lpath)))
1271 ;;; Enabling and disabling loaded themes.
1273 (defun enable-theme (theme)
1274 "Reenable all variable and face settings defined by THEME.
1275 THEME should be either `user', or a theme loaded via `load-theme'.
1276 After this function completes, THEME will have the highest
1277 precedence (after `user')."
1278 (interactive (list (intern
1279 (completing-read
1280 "Enable custom theme: "
1281 obarray (lambda (sym) (get sym 'theme-settings)) t))))
1282 (if (not (custom-theme-p theme))
1283 (error "Undefined Custom theme %s" theme))
1284 (let ((settings (get theme 'theme-settings)))
1285 ;; Loop through theme settings, recalculating vars/faces.
1286 (dolist (s settings)
1287 (let* ((prop (car s))
1288 (symbol (cadr s))
1289 (spec-list (get symbol prop)))
1290 (put symbol prop (cons (cddr s) (assq-delete-all theme spec-list)))
1291 (cond
1292 ((eq prop 'theme-face)
1293 (custom-theme-recalc-face symbol))
1294 ((eq prop 'theme-value)
1295 ;; Ignore `custom-enabled-themes' and `custom-safe-themes'.
1296 (unless (memq symbol '(custom-enabled-themes custom-safe-themes))
1297 (custom-theme-recalc-variable symbol)))))))
1298 (unless (eq theme 'user)
1299 (setq custom-enabled-themes
1300 (cons theme (delq theme custom-enabled-themes)))
1301 ;; Give the `user' theme the highest priority.
1302 (enable-theme 'user)))
1304 (defcustom custom-enabled-themes nil
1305 "List of enabled Custom Themes, highest precedence first.
1306 This list does not include the `user' theme, which is set by
1307 Customize and always takes precedence over other Custom Themes.
1309 This variable cannot be defined inside a Custom theme; there, it
1310 is simply ignored.
1312 Setting this variable through Customize calls `enable-theme' or
1313 `load-theme' for each theme in the list."
1314 :group 'customize
1315 :type '(repeat symbol)
1316 :set-after '(custom-theme-directory custom-theme-load-path
1317 custom-safe-themes)
1318 :risky t
1319 :set (lambda (symbol themes)
1320 (let (failures)
1321 (setq themes (delq 'user (delete-dups themes)))
1322 ;; Disable all themes not in THEMES.
1323 (if (boundp symbol)
1324 (dolist (theme (symbol-value symbol))
1325 (if (not (memq theme themes))
1326 (disable-theme theme))))
1327 ;; Call `enable-theme' or `load-theme' on each of THEMES.
1328 (dolist (theme (reverse themes))
1329 (condition-case nil
1330 (if (custom-theme-p theme)
1331 (enable-theme theme)
1332 (load-theme theme))
1333 (error (setq failures (cons theme failures)
1334 themes (delq theme themes)))))
1335 (enable-theme 'user)
1336 (custom-set-default symbol themes)
1337 (if failures
1338 (message "Failed to enable theme: %s"
1339 (mapconcat 'symbol-name failures ", "))))))
1341 (defsubst custom-theme-enabled-p (theme)
1342 "Return non-nil if THEME is enabled."
1343 (memq theme custom-enabled-themes))
1345 (defun disable-theme (theme)
1346 "Disable all variable and face settings defined by THEME.
1347 See `custom-enabled-themes' for a list of enabled themes."
1348 (interactive (list (intern
1349 (completing-read
1350 "Disable custom theme: "
1351 (mapcar 'symbol-name custom-enabled-themes)
1352 nil t))))
1353 (when (custom-theme-enabled-p theme)
1354 (let ((settings (get theme 'theme-settings)))
1355 (dolist (s settings)
1356 (let* ((prop (car s))
1357 (symbol (cadr s))
1358 (val (assq-delete-all theme (get symbol prop))))
1359 (put symbol prop val)
1360 (cond
1361 ((eq prop 'theme-value)
1362 (custom-theme-recalc-variable symbol))
1363 ((eq prop 'theme-face)
1364 ;; If the face spec specified by this theme is in the
1365 ;; saved-face property, reset that property.
1366 (when (equal (nth 3 s) (get symbol 'saved-face))
1367 (put symbol 'saved-face (and val (cadr (car val)))))))))
1368 ;; Recompute faces on all frames.
1369 (dolist (frame (frame-list))
1370 ;; We must reset the fg and bg color frame parameters, or
1371 ;; `face-set-after-frame-default' will use the existing
1372 ;; parameters, which could be from the disabled theme.
1373 (set-frame-parameter frame 'background-color
1374 (custom--frame-color-default
1375 frame :background "background" "Background"
1376 "unspecified-bg" "white"))
1377 (set-frame-parameter frame 'foreground-color
1378 (custom--frame-color-default
1379 frame :foreground "foreground" "Foreground"
1380 "unspecified-fg" "black"))
1381 (face-set-after-frame-default frame))
1382 (setq custom-enabled-themes
1383 (delq theme custom-enabled-themes)))))
1385 (defun custom--frame-color-default (frame attribute resource-attr resource-class
1386 tty-default x-default)
1387 (let ((col (face-attribute 'default attribute t)))
1388 (cond
1389 ((and col (not (eq col 'unspecified))) col)
1390 ((null (window-system frame)) tty-default)
1391 ((setq col (x-get-resource resource-attr resource-class)) col)
1392 (t x-default))))
1394 (defun custom-variable-theme-value (variable)
1395 "Return (list VALUE) indicating the custom theme value of VARIABLE.
1396 That is to say, it specifies what the value should be according to
1397 currently enabled custom themes.
1399 This function returns nil if no custom theme specifies a value for VARIABLE."
1400 (let ((theme-value (get variable 'theme-value)))
1401 (if theme-value
1402 (cdr (car theme-value)))))
1404 (defun custom-theme-recalc-variable (variable)
1405 "Set VARIABLE according to currently enabled custom themes."
1406 (let ((valspec (custom-variable-theme-value variable)))
1407 (if valspec
1408 (put variable 'saved-value valspec)
1409 (setq valspec (get variable 'standard-value)))
1410 (if (and valspec
1411 (or (get variable 'force-value)
1412 (default-boundp variable)))
1413 (funcall (or (get variable 'custom-set) 'set-default) variable
1414 (eval (car valspec))))))
1416 (defun custom-theme-recalc-face (face)
1417 "Set FACE according to currently enabled custom themes."
1418 (if (get face 'face-alias)
1419 (setq face (get face 'face-alias)))
1420 ;; Reset the faces for each frame.
1421 (dolist (frame (frame-list))
1422 (face-spec-recalc face frame)))
1425 ;;; XEmacs compatibility functions
1427 ;; In XEmacs, when you reset a Custom Theme, you have to specify the
1428 ;; theme to reset it to. We just apply the next available theme, so
1429 ;; just ignore the IGNORED arguments.
1431 (defun custom-theme-reset-variables (theme &rest args)
1432 "Reset some variable settings in THEME to their values in other themes.
1433 Each of the arguments ARGS has this form:
1435 (VARIABLE IGNORED)
1437 This means reset VARIABLE. (The argument IGNORED is ignored)."
1438 (custom-check-theme theme)
1439 (dolist (arg args)
1440 (custom-push-theme 'theme-value (car arg) theme 'reset)))
1442 (defun custom-reset-variables (&rest args)
1443 "Reset the specs of some variables to their values in other themes.
1444 This creates settings in the `user' theme.
1446 Each of the arguments ARGS has this form:
1448 (VARIABLE IGNORED)
1450 This means reset VARIABLE. (The argument IGNORED is ignored)."
1451 (apply 'custom-theme-reset-variables 'user args))
1453 ;;; The End.
1455 ;; Process the defcustoms for variables loaded before this file.
1456 (while custom-declare-variable-list
1457 (apply 'custom-declare-variable (car custom-declare-variable-list))
1458 (setq custom-declare-variable-list (cdr custom-declare-variable-list)))
1460 (provide 'custom)
1462 ;;; custom.el ends here