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