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