1 ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages
3 ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
8 ;; Keywords: help, faces
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/>.
27 ;; This file implements the code to create and edit customize buffers.
31 ;; No commands should have names starting with `custom-' because
32 ;; that interferes with completion. Use `customize-' for commands
33 ;; that the user will run with M-x, and `Custom-' for interactive commands.
35 ;; The identity of a customize option is represented by a Lisp symbol.
36 ;; The following values are associated with an option.
38 ;; 0. The current value.
40 ;; This is the value of the option as seen by "the rest of Emacs".
42 ;; Usually extracted by 'default-value', but can be extracted with
43 ;; different means if the option symbol has the 'custom-get'
44 ;; property. Similarly, set-default (or the 'custom-set' property)
47 ;; 1. The widget value.
49 ;; This is the value shown in the widget in a customize buffer.
51 ;; 2. The customized value.
53 ;; This is the last value given to the option through customize.
55 ;; It is stored in the 'customized-value' property of the option, in a
56 ;; cons-cell whose car evaluates to the customized value.
58 ;; 3. The saved value.
60 ;; This is last value saved from customize.
62 ;; It is stored in the 'saved-value' property of the option, in a
63 ;; cons-cell whose car evaluates to the saved value.
65 ;; 4. The standard value.
67 ;; This is the value given in the 'defcustom' declaration.
69 ;; It is stored in the 'standard-value' property of the option, in a
70 ;; cons-cell whose car evaluates to the standard value.
72 ;; 5. The "think" value.
74 ;; This is what customize thinks the current value should be.
76 ;; This is the customized value, if any such value exists, otherwise
77 ;; the saved value, if that exists, and as a last resort the standard
80 ;; The reason for storing values unevaluated: This is so you can have
81 ;; values that depend on the environment. For example, you can have a
82 ;; variable that has one value when Emacs is running under a window
83 ;; system, and another value on a tty. Since the evaluation is only done
84 ;; when the variable is first initialized, this is only relevant for the
85 ;; saved (and standard) values, but affect others values for
88 ;; You can see (and modify and save) this unevaluated value by selecting
89 ;; "Show Saved Lisp Expression" from the Lisp interface. This will
90 ;; give you the unevaluated saved value, if any, otherwise the
91 ;; unevaluated standard value.
93 ;; The possible states for a customize widget are:
97 ;; The state has not been determined yet.
101 ;; The widget value is different from the current value.
105 ;; The current value is different from the "think" value.
109 ;; The "think" value is the customized value.
113 ;; The "think" value is the saved value.
117 ;; The "think" value is the standard value.
121 ;; There is no standard value. This means that the variable was
122 ;; not defined with defcustom, nor handled in cus-start.el. Most
123 ;; standard interactive Custom commands do not let you create a
124 ;; Custom buffer containing such variables. However, such Custom
125 ;; buffers can be created, for instance, by calling
126 ;; `customize-apropos' with a prefix arg or by calling
127 ;; `customize-option' non-interactively.
131 ;; There is no widget value.
135 ;; The widget value is not valid member of the :type specified for the
143 (defvar custom-versions-load-alist
) ; from cus-load
144 (defvar recentf-exclude
) ; from recentf.el
154 (put 'custom-define-hook
'custom-type
'hook
)
155 (put 'custom-define-hook
'standard-value
'(nil))
156 (custom-add-to-group 'customize
'custom-define-hook
'custom-variable
)
158 ;;; Customization Groups.
161 "Customization of the One True Editor."
162 :link
'(custom-manual "(emacs)Top"))
164 ;; Most of these groups are stolen from `finder.el',
165 (defgroup editing nil
166 "Basic text editing facilities."
170 "Abbreviation handling, typing shortcuts, macros."
174 (defgroup matching nil
175 "Various sorts of searching and matching."
178 (defgroup emulations nil
179 "Emulations of other editors."
180 :link
'(custom-manual "(emacs)Emulation")
187 (defgroup outlines nil
188 "Support for hierarchical outlining."
191 (defgroup external nil
192 "Interfacing to external utilities."
195 (defgroup processes nil
196 "Process, subshell, compilation, and job control support."
200 (defgroup convenience nil
201 "Convenience features for faster editing."
204 (defgroup programming nil
205 "Support for programming in other languages."
208 (defgroup languages nil
209 "Specialized modes for editing programming languages."
213 "Lisp support, including Emacs Lisp."
214 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
219 "Support for the C language and related languages."
220 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
221 :link
'(custom-manual "(ccmode)")
229 "Support for object-oriented programming."
232 (defgroup applications nil
233 "Applications written in Emacs."
236 (defgroup calendar nil
237 "Calendar and time management support."
238 :group
'applications
)
241 "Modes for electronic-mail handling."
242 :group
'applications
)
245 "Support for netnews reading and posting."
246 :link
'(custom-manual "(gnus)")
247 :group
'applications
)
250 "Games, jokes and amusements."
251 :group
'applications
)
253 (defgroup development nil
254 "Support for further development of Emacs."
258 "Support for Emacs documentation."
261 (defgroup extensions nil
262 "Emacs Lisp language extensions."
265 (defgroup internal nil
266 "Code for Emacs internals, build process, defaults."
270 "Maintenance aids for the Emacs development group."
274 (defgroup environment nil
275 "Fitting Emacs with its environment."
279 "Communications, networking, remote access to files."
283 (defgroup hardware nil
284 "Support for interfacing with exotic hardware."
287 (defgroup terminals nil
288 "Support for terminal types."
292 "Front-ends/assistants for, or emulators of, UNIX features."
296 "Internationalization and alternate character-set support."
297 :link
'(custom-manual "(emacs)International")
302 "The X Window system."
306 "Support for Emacs frames and window systems."
310 "Support editing files of data."
314 "Support editing files."
322 "Code related to the TeX formatter."
323 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
327 "Support for multiple fonts."
330 (defgroup hypermedia nil
331 "Support for links between text or other media types."
335 "Support for on-line help systems."
338 (defgroup multimedia nil
339 "Non-textual support, specifically images and sound."
343 "Code local to your site."
346 (defgroup customize
'((widgets custom-group
))
347 "Customization of the Customization support."
351 (defgroup custom-faces nil
352 "Faces used by customize."
356 (defgroup custom-browse nil
357 "Control customize browser."
361 (defgroup custom-buffer nil
362 "Control customize buffers."
366 (defgroup custom-menu nil
367 "Control customize menus."
372 "Storage allocation and gc for GNU Emacs Lisp interpreter."
373 :tag
"Storage Allocation"
377 "Undoing changes in buffers."
378 :link
'(custom-manual "(emacs)Undo")
381 (defgroup mode-line nil
382 "Content of the modeline."
385 (defgroup editing-basics nil
386 "Most basic editing facilities."
389 (defgroup display nil
390 "How characters are displayed in buffers."
393 (defgroup execute nil
394 "Executing external commands."
397 (defgroup installation nil
398 "The Emacs installation."
406 "Internal Emacs limits."
410 "Debugging Emacs itself."
413 (defgroup keyboard nil
414 "Input from the keyboard."
418 "Input from the mouse."
422 "Input from the menus."
426 "Handling data from drag and drop."
429 (defgroup auto-save nil
430 "Preventing accidental loss of data."
433 (defgroup processes-basics nil
434 "Basic stuff dealing with processes."
438 "MULE Emacs internationalization."
441 (defgroup windows nil
442 "Windows within a frame."
443 :link
'(custom-manual "(emacs)Windows")
446 ;;; Custom mode keymaps
448 (defvar custom-mode-map
449 ;; This keymap should be dense, but a dense keymap would prevent inheriting
450 ;; "\r" bindings from the parent map.
451 ;; Actually, this misfeature of dense keymaps was fixed on 2001-11-26.
452 (let ((map (make-keymap)))
453 (set-keymap-parent map widget-keymap
)
454 (define-key map
[remap self-insert-command
] 'Custom-no-edit
)
455 (define-key map
"\^m" 'Custom-newline
)
456 (define-key map
" " 'scroll-up
)
457 (define-key map
"\177" 'scroll-down
)
458 (define-key map
"\C-c\C-c" 'Custom-set
)
459 (define-key map
"\C-x\C-s" 'Custom-save
)
460 (define-key map
"q" 'Custom-buffer-done
)
461 (define-key map
"u" 'Custom-goto-parent
)
462 (define-key map
"n" 'widget-forward
)
463 (define-key map
"p" 'widget-backward
)
465 "Keymap for `Custom-mode'.")
467 (defvar custom-mode-link-map
468 (let ((map (make-keymap)))
469 (set-keymap-parent map custom-mode-map
)
470 (define-key map
[down-mouse-2
] nil
)
471 (define-key map
[down-mouse-1
] 'mouse-drag-region
)
472 (define-key map
[mouse-2
] 'widget-move-and-invoke
)
474 "Local keymap for links in `Custom-mode'.")
476 (defvar custom-field-keymap
477 (let ((map (copy-keymap widget-field-keymap
)))
478 (define-key map
"\C-c\C-c" 'Custom-set
)
479 (define-key map
"\C-x\C-s" 'Custom-save
)
481 "Keymap used inside editable fields in customization buffers.")
483 (widget-put (get 'editable-field
'widget-type
) :keymap custom-field-keymap
)
487 (defun custom-split-regexp-maybe (regexp)
488 "If REGEXP is a string, split it to a list at `\\|'.
489 You can get the original back from the result with:
490 (mapconcat 'identity result \"\\|\")
492 IF REGEXP is not a string, return it unchanged."
494 (split-string regexp
"\\\\|")
497 (defun custom-variable-prompt ()
498 "Prompt for a custom variable, defaulting to the variable at point.
499 Return a list suitable for use in `interactive'."
500 (let* ((v (variable-at-point))
501 (default (and (symbolp v
) (custom-variable-p v
) (symbol-name v
)))
502 (enable-recursive-minibuffers t
)
504 (setq val
(completing-read
505 (if default
(format "Customize variable (default %s): " default
)
506 "Customize variable: ")
507 obarray
'custom-variable-p t nil nil default
))
508 (list (if (equal val
"")
509 (if (symbolp v
) v nil
)
512 (defun custom-menu-filter (menu widget
)
513 "Convert MENU to the form used by `widget-choose'.
514 MENU should be in the same format as `custom-variable-menu'.
515 WIDGET is the widget to apply the filter entries of MENU on."
517 current name action filter
)
519 (setq current
(car menu
)
521 action
(nth 1 current
)
522 filter
(nth 2 current
)
524 (if (or (null filter
) (funcall filter widget
))
525 (push (cons name action
) result
)
531 (defvar custom-prefix-list nil
532 "List of prefixes that should be ignored by `custom-unlispify'.")
534 (defcustom custom-unlispify-menu-entries t
535 "Display menu entries as words instead of symbols if non-nil."
539 (defcustom custom-unlispify-remove-prefixes nil
540 "Non-nil means remove group prefixes from option names in buffer."
542 :group
'custom-buffer
545 (defun custom-unlispify-menu-entry (symbol &optional no-suffix
)
546 "Convert SYMBOL into a menu entry."
547 (cond ((not custom-unlispify-menu-entries
)
548 (symbol-name symbol
))
549 ((get symbol
'custom-tag
)
551 (get symbol
'custom-tag
)
552 (concat (get symbol
'custom-tag
) "...")))
554 (with-current-buffer (get-buffer-create " *Custom-Work*")
556 (princ symbol
(current-buffer))
557 (goto-char (point-min))
558 ;; FIXME: Boolean variables are not predicates, so they shouldn't
559 ;; end with `-p'. -stef
560 ;; (when (and (eq (get symbol 'custom-type) 'boolean)
561 ;; (re-search-forward "-p\\'" nil t))
562 ;; (replace-match "" t t)
563 ;; (goto-char (point-min)))
564 (if custom-unlispify-remove-prefixes
565 (let ((prefixes custom-prefix-list
)
568 (setq prefix
(car prefixes
))
569 (if (search-forward prefix
(+ (point) (length prefix
)) t
)
572 (delete-region (point-min) (point)))
573 (setq prefixes
(cdr prefixes
))))))
574 (subst-char-in-region (point-min) (point-max) ?- ?\ t
)
575 (capitalize-region (point-min) (point-max))
577 (goto-char (point-max))
581 (defcustom custom-unlispify-tag-names t
582 "Display tag names as words instead of symbols if non-nil."
583 :group
'custom-buffer
586 (defun custom-unlispify-tag-name (symbol)
587 "Convert SYMBOL into a menu entry."
588 (let ((custom-unlispify-menu-entries custom-unlispify-tag-names
))
589 (custom-unlispify-menu-entry symbol t
)))
591 (defun custom-prefix-add (symbol prefixes
)
592 "Add SYMBOL to list of ignored PREFIXES."
593 (cons (or (get symbol
'custom-prefix
)
594 (concat (symbol-name symbol
) "-"))
599 (defcustom custom-guess-name-alist
605 ("-function\\'" function
)
606 ("-functions\\'" (repeat function
))
607 ("-list\\'" (repeat sexp
))
608 ("-alist\\'" (repeat (cons sexp sexp
))))
609 "Alist of (MATCH TYPE).
611 MATCH should be a regexp matching the name of a symbol, and TYPE should
612 be a widget suitable for editing the value of that symbol. The TYPE
613 of the first entry where MATCH matches the name of the symbol will be
616 This is used for guessing the type of variables not declared with
618 :type
'(repeat (group (regexp :tag
"Match") (sexp :tag
"Type")))
619 :group
'custom-buffer
)
621 (defcustom custom-guess-doc-alist
622 '(("\\`\\*?Non-nil " boolean
))
623 "Alist of (MATCH TYPE).
625 MATCH should be a regexp matching a documentation string, and TYPE
626 should be a widget suitable for editing the value of a variable with
627 that documentation string. The TYPE of the first entry where MATCH
628 matches the name of the symbol will be used.
630 This is used for guessing the type of variables not declared with
632 :type
'(repeat (group (regexp :tag
"Match") (sexp :tag
"Type")))
633 :group
'custom-buffer
)
635 (defun custom-guess-type (symbol)
636 "Guess a widget suitable for editing the value of SYMBOL.
637 This is done by matching SYMBOL with `custom-guess-name-alist' and
638 if that fails, the doc string with `custom-guess-doc-alist'."
639 (let ((name (symbol-name symbol
))
640 (names custom-guess-name-alist
)
643 (setq current
(car names
)
645 (when (string-match (nth 0 current
) name
)
646 (setq found
(nth 1 current
)
649 (let ((doc (documentation-property symbol
'variable-documentation
))
650 (docs custom-guess-doc-alist
))
653 (setq current
(car docs
)
655 (when (string-match (nth 0 current
) doc
)
656 (setq found
(nth 1 current
)
663 (defcustom custom-browse-sort-alphabetically nil
664 "If non-nil, sort customization group alphabetically in `custom-browse'."
666 :group
'custom-browse
)
668 (defcustom custom-browse-order-groups nil
669 "If non-nil, order group members within each customization group.
670 If `first', order groups before non-groups.
671 If `last', order groups after non-groups."
672 :type
'(choice (const first
)
674 (const :tag
"none" nil
))
675 :group
'custom-browse
)
677 (defcustom custom-browse-only-groups nil
678 "If non-nil, show group members only within each customization group."
680 :group
'custom-browse
)
683 (defcustom custom-buffer-sort-alphabetically nil
684 "If non-nil, sort each customization group alphabetically in Custom buffer."
686 :group
'custom-buffer
)
688 (defcustom custom-buffer-order-groups
'last
689 "If non-nil, order group members within each customization group.
690 If `first', order groups before non-groups.
691 If `last', order groups after non-groups."
692 :type
'(choice (const first
)
694 (const :tag
"none" nil
))
695 :group
'custom-buffer
)
698 (defcustom custom-menu-sort-alphabetically nil
699 "If non-nil, sort each customization group alphabetically in menus."
703 (defcustom custom-menu-order-groups
'first
704 "If non-nil, order group members within each customization group.
705 If `first', order groups before non-groups.
706 If `last', order groups after non-groups."
707 :type
'(choice (const first
)
709 (const :tag
"none" nil
))
712 ;;;###autoload (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")
714 (defun custom-sort-items (items sort-alphabetically order-groups
)
715 "Return a sorted copy of ITEMS.
716 ITEMS should be a `custom-group' property.
717 If SORT-ALPHABETICALLY non-nil, sort alphabetically.
718 If ORDER-GROUPS is `first' order groups before non-groups, if `last' order
719 groups after non-groups, if nil do not order groups at all."
720 (sort (copy-sequence items
)
722 (let ((typea (nth 1 a
)) (typeb (nth 1 b
))
723 (namea (nth 0 a
)) (nameb (nth 0 b
)))
724 (cond ((not order-groups
)
725 ;; Since we don't care about A and B order, maybe sort.
726 (when sort-alphabetically
727 (string-lessp namea nameb
)))
728 ((eq typea
'custom-group
)
729 ;; If B is also a group, maybe sort. Otherwise, order A and B.
730 (if (eq typeb
'custom-group
)
731 (when sort-alphabetically
732 (string-lessp namea nameb
))
733 (eq order-groups
'first
)))
734 ((eq typeb
'custom-group
)
735 ;; Since A cannot be a group, order A and B.
736 (eq order-groups
'last
))
738 ;; Since A and B cannot be groups, sort.
739 (string-lessp namea nameb
)))))))
741 ;;; Custom Mode Commands.
743 ;; This variable is used by `custom-tool-bar-map', or directly by
744 ;; `custom-buffer-create-internal' if `custom-buffer-verbose-help' is non-nil.
746 (defvar custom-commands
747 '(("Set for current session" Custom-set t
748 "Apply all settings in this buffer to the current session"
750 ("Save for future sessions" Custom-save
751 (or custom-file user-init-file
)
752 "Apply all settings in this buffer and save them for future Emacs sessions."
754 ("Undo edits" Custom-reset-current t
755 "Restore all settings in this buffer to reflect their current values."
757 ("Reset to saved" Custom-reset-saved t
758 "Restore all settings in this buffer to their saved values (if any)."
760 ("Erase customizations" Custom-reset-standard
761 (or custom-file user-init-file
)
762 "Un-customize all settings in this buffer and save them with standard values."
764 ("Help for Customize" Custom-help t
765 "Get help for using Customize."
767 ("Exit" Custom-buffer-done t
"Exit Customize." "exit")))
769 (defun Custom-help ()
770 "Read the node on Easy Customization in the Emacs manual."
772 (info "(emacs)Easy Customization"))
774 (defvar custom-reset-menu
775 '(("Undo Edits" . Custom-reset-current
)
776 ("Reset to Saved" . Custom-reset-saved
)
777 ("Erase Customizations (use standard values)" . Custom-reset-standard
))
778 "Alist of actions for the `Reset' button.
779 The key is a string containing the name of the action, the value is a
780 Lisp function taking the widget as an element which will be called
781 when the action is chosen.")
783 (defvar custom-options nil
784 "Customization widgets in the current buffer.")
786 (defun custom-command-apply (fun query
&optional strong-query
)
787 "Call function FUN on all widgets in `custom-options'.
788 If there is more than one widget, ask user for confirmation using
789 the query string QUERY, using `y-or-n-p' if STRONG-QUERY is nil,
790 and `yes-or-no-p' otherwise."
791 (if (or (and (= 1 (length custom-options
))
792 (memq (widget-type (car custom-options
))
793 '(custom-variable custom-face
)))
794 (funcall (if strong-query
'yes-or-no-p
'y-or-n-p
) query
))
795 (progn (mapc fun custom-options
) t
)
799 (defun Custom-set (&rest ignore
)
800 "Set the current value of all edited settings in the buffer."
802 (custom-command-apply
804 (when (eq (widget-get child
:custom-state
) 'modified
)
805 (widget-apply child
:custom-set
)))
806 "Set all values according to this buffer? "))
808 (defun Custom-save (&rest ignore
)
809 "Set all edited settings, then save all settings that have been set.
810 If a setting was edited and set before, this saves it. If a
811 setting was merely edited before, this sets it then saves it."
813 (when (custom-command-apply
815 (when (memq (widget-get child
:custom-state
)
816 '(modified set changed rogue
))
817 (widget-apply child
:custom-mark-to-save
)))
818 "Save all settings in this buffer? " t
)
819 ;; Save changes to buffer and redraw.
821 (dolist (child custom-options
)
822 (widget-apply child
:custom-state-set-and-redraw
))))
824 (defun custom-reset (widget &optional event
)
825 "Select item from reset menu."
826 (let* ((completion-ignore-case t
)
827 (answer (widget-choose "Reset settings"
833 (defun Custom-reset-current (&rest ignore
)
834 "Reset all edited settings in the buffer to show their current values."
836 (custom-command-apply
838 (if (memq (widget-get widget
:custom-state
) '(modified changed
))
839 (widget-apply widget
:custom-reset-current
)))
840 "Reset all settings' buffer text to show current values? "))
842 (defun Custom-reset-saved (&rest ignore
)
843 "Reset all edited or set settings in the buffer to their saved value.
844 This also shows the saved values in the buffer."
846 (custom-command-apply
848 (if (memq (widget-get widget
:custom-state
) '(modified set changed rogue
))
849 (widget-apply widget
:custom-reset-saved
)))
850 "Reset all settings (current values and buffer text) to saved values? "))
852 ;; The next two variables are bound to '(t) by `Custom-reset-standard'
853 ;; and `custom-group-reset-standard'. If these variables are nil, both
854 ;; `custom-variable-reset-standard' and `custom-face-reset-standard'
855 ;; save, reset and redraw the handled widget immediately. Otherwise,
856 ;; they add the widget to the corresponding list and leave it to
857 ;; `custom-reset-standard-save-and-update' to save, reset and redraw it.
858 (defvar custom-reset-standard-variables-list nil
)
859 (defvar custom-reset-standard-faces-list nil
)
861 ;; The next function was excerpted from `custom-variable-reset-standard'
862 ;; and `custom-face-reset-standard' and is used to avoid calling
863 ;; `custom-save-all' repeatedly (and thus saving settings to file one by
864 ;; one) when erasing all customizations.
865 (defun custom-reset-standard-save-and-update ()
866 "Save settings and redraw after erasing customizations."
867 (when (or (and custom-reset-standard-variables-list
868 (not (eq custom-reset-standard-variables-list
'(t))))
869 (and custom-reset-standard-faces-list
870 (not (eq custom-reset-standard-faces-list
'(t)))))
871 ;; Save settings to file.
873 ;; Set state of and redraw variables.
874 (dolist (widget custom-reset-standard-variables-list
)
875 (unless (eq widget t
)
876 (widget-put widget
:custom-state
'unknown
)
877 (custom-redraw widget
)))
878 ;; Set state of and redraw faces.
879 (dolist (widget custom-reset-standard-faces-list
)
880 (unless (eq widget t
)
881 (let* ((symbol (widget-value widget
))
882 (child (car (widget-get widget
:children
)))
883 (value (get symbol
'face-defface-spec
))
884 (comment-widget (widget-get widget
:comment-widget
)))
885 (put symbol
'face-comment nil
)
886 (widget-value-set child
887 (custom-pre-filter-face-spec
888 (list (list t
(custom-face-attributes-get
890 ;; This call manages the comment visibility
891 (widget-value-set comment-widget
"")
892 (custom-face-state-set widget
)
893 (custom-redraw-magic widget
))))))
895 (defun Custom-reset-standard (&rest ignore
)
896 "Erase all customizations (either current or saved) in current buffer.
897 The immediate result is to restore them to their standard values.
898 This operation eliminates any saved values for the group members,
899 making them as if they had never been customized at all."
901 ;; Bind these temporarily.
902 (let ((custom-reset-standard-variables-list '(t))
903 (custom-reset-standard-faces-list '(t)))
904 (custom-command-apply
906 (and (or (null (widget-get widget
:custom-standard-value
))
907 (widget-apply widget
:custom-standard-value
))
908 (memq (widget-get widget
:custom-state
)
909 '(modified set changed saved rogue
))
910 (widget-apply widget
:custom-mark-to-reset-standard
)))
911 "Erase all customizations for settings in this buffer? " t
)
912 (custom-reset-standard-save-and-update)))
914 ;;; The Customize Commands
916 (defun custom-prompt-variable (prompt-var prompt-val
&optional comment
)
917 "Prompt for a variable and a value and return them as a list.
918 PROMPT-VAR is the prompt for the variable, and PROMPT-VAL is the
919 prompt for the value. The %s escape in PROMPT-VAL is replaced with
920 the name of the variable.
922 If the variable has a `variable-interactive' property, that is used as if
923 it were the arg to `interactive' (which see) to interactively read the value.
925 If the variable has a `custom-type' property, it must be a widget and the
926 `:prompt-value' property of that widget will be used for reading the value.
928 If optional COMMENT argument is non-nil, also prompt for a comment and return
929 it as the third element in the list."
930 (let* ((var (read-variable prompt-var
))
931 (minibuffer-help-form '(describe-variable var
))
933 (let ((prop (get var
'variable-interactive
))
934 (type (get var
'custom-type
))
935 (prompt (format prompt-val var
)))
937 (setq type
(list type
)))
939 ;; Use VAR's `variable-interactive' property
940 ;; as an interactive spec for prompting.
941 (call-interactively `(lambda (arg)
945 (widget-prompt-value type
951 (eval-minibuffer prompt
))))))
954 (read-string "Comment: " (get var
'variable-comment
)))
958 (defun customize-set-value (variable value
&optional comment
)
959 "Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object.
961 If VARIABLE has a `variable-interactive' property, that is used as if
962 it were the arg to `interactive' (which see) to interactively read the value.
964 If VARIABLE has a `custom-type' property, it must be a widget and the
965 `:prompt-value' property of that widget will be used for reading the value.
967 If given a prefix (or a COMMENT argument), also prompt for a comment."
968 (interactive (custom-prompt-variable "Set variable: "
972 (cond ((string= comment
"")
973 (put variable
'variable-comment nil
))
975 (put variable
'variable-comment comment
)))
976 (set variable value
))
979 (defun customize-set-variable (variable value
&optional comment
)
980 "Set the default for VARIABLE to VALUE, and return VALUE.
981 VALUE is a Lisp object.
983 If VARIABLE has a `custom-set' property, that is used for setting
984 VARIABLE, otherwise `set-default' is used.
986 If VARIABLE has a `variable-interactive' property, that is used as if
987 it were the arg to `interactive' (which see) to interactively read the value.
989 If VARIABLE has a `custom-type' property, it must be a widget and the
990 `:prompt-value' property of that widget will be used for reading the value.
992 If given a prefix (or a COMMENT argument), also prompt for a comment."
993 (interactive (custom-prompt-variable "Set variable: "
994 "Set customized value for %s to: "
996 (custom-load-symbol variable
)
997 (custom-push-theme 'theme-value variable
'user
'set
(custom-quote value
))
998 (funcall (or (get variable
'custom-set
) 'set-default
) variable value
)
999 (put variable
'customized-value
(list (custom-quote value
)))
1000 (cond ((string= comment
"")
1001 (put variable
'variable-comment nil
)
1002 (put variable
'customized-variable-comment nil
))
1004 (put variable
'variable-comment comment
)
1005 (put variable
'customized-variable-comment comment
)))
1009 (defun customize-save-variable (variable value
&optional comment
)
1010 "Set the default for VARIABLE to VALUE, and save it for future sessions.
1013 If VARIABLE has a `custom-set' property, that is used for setting
1014 VARIABLE, otherwise `set-default' is used.
1016 If VARIABLE has a `variable-interactive' property, that is used as if
1017 it were the arg to `interactive' (which see) to interactively read the value.
1019 If VARIABLE has a `custom-type' property, it must be a widget and the
1020 `:prompt-value' property of that widget will be used for reading the value.
1022 If given a prefix (or a COMMENT argument), also prompt for a comment."
1023 (interactive (custom-prompt-variable "Set and save variable: "
1024 "Set and save value for %s as: "
1025 current-prefix-arg
))
1026 (funcall (or (get variable
'custom-set
) 'set-default
) variable value
)
1027 (put variable
'saved-value
(list (custom-quote value
)))
1028 (custom-push-theme 'theme-value variable
'user
'set
(custom-quote value
))
1029 (cond ((string= comment
"")
1030 (put variable
'variable-comment nil
)
1031 (put variable
'saved-variable-comment nil
))
1033 (put variable
'variable-comment comment
)
1034 (put variable
'saved-variable-comment comment
)))
1035 (put variable
'customized-value nil
)
1036 (put variable
'customized-variable-comment nil
)
1042 "Select a customization buffer which you can use to set user options.
1043 User options are structured into \"groups\".
1044 Initially the top-level group `Emacs' and its immediate subgroups
1045 are shown; the contents of those subgroups are initially hidden."
1047 (customize-group 'emacs
))
1050 (defun customize-mode (mode)
1051 "Customize options related to the current major mode.
1052 If a prefix \\[universal-argument] was given (or if the current major mode has no known group),
1053 then prompt for the MODE to customize."
1056 (let ((completion-regexp-list '("-mode\\'"))
1057 (group (custom-group-of-mode major-mode
)))
1058 (if (and group
(not current-prefix-arg
))
1061 (completing-read (if group
1062 (format "Major mode (default %s): " major-mode
)
1065 'custom-group-of-mode
1066 t nil nil
(if group
(symbol-name major-mode
))))))))
1067 (customize-group (custom-group-of-mode mode
)))
1069 (defun customize-read-group ()
1070 (let ((completion-ignore-case t
))
1071 (completing-read "Customize group (default emacs): "
1074 (or (and (get symbol
'custom-loads
)
1075 (not (get symbol
'custom-autoload
)))
1076 (get symbol
'custom-group
)))
1080 (defun customize-group (&optional group
)
1081 "Customize GROUP, which must be a customization group."
1082 (interactive (list (customize-read-group)))
1083 (when (stringp group
)
1084 (if (string-equal "" group
)
1086 (setq group
(intern group
))))
1087 (let ((name (format "*Customize Group: %s*"
1088 (custom-unlispify-tag-name group
))))
1089 (if (get-buffer name
)
1090 (pop-to-buffer name
)
1091 (custom-buffer-create
1092 (list (list group
'custom-group
))
1094 (concat " for group "
1095 (custom-unlispify-tag-name group
))))))
1098 (defun customize-group-other-window (&optional group
)
1099 "Customize GROUP, which must be a customization group, in another window."
1100 (interactive (list (customize-read-group)))
1101 (let ((pop-up-windows t
)
1102 (same-window-buffer-names nil
)
1103 (same-window-regexps nil
))
1104 (customize-group group
)))
1107 (defalias 'customize-variable
'customize-option
)
1110 (defun customize-option (symbol)
1111 "Customize SYMBOL, which must be a user option variable."
1112 (interactive (custom-variable-prompt))
1114 (error "No variable specified"))
1115 (let ((basevar (indirect-variable symbol
)))
1116 (custom-buffer-create (list (list basevar
'custom-variable
))
1117 (format "*Customize Option: %s*"
1118 (custom-unlispify-tag-name basevar
)))
1119 (unless (eq symbol basevar
)
1120 (message "`%s' is an alias for `%s'" symbol basevar
))))
1123 (defalias 'customize-variable-other-window
'customize-option-other-window
)
1126 (defun customize-option-other-window (symbol)
1127 "Customize SYMBOL, which must be a user option variable.
1128 Show the buffer in another window, but don't select it."
1129 (interactive (custom-variable-prompt))
1131 (error "No variable specified"))
1132 (let ((basevar (indirect-variable symbol
)))
1133 (custom-buffer-create-other-window
1134 (list (list basevar
'custom-variable
))
1135 (format "*Customize Option: %s*" (custom-unlispify-tag-name basevar
)))
1136 (unless (eq symbol basevar
)
1137 (message "`%s' is an alias for `%s'" symbol basevar
))))
1139 (defvar customize-changed-options-previous-release
"21.1"
1140 "Version for `customize-changed-options' to refer back to by default.")
1142 ;; Packages will update this variable, so make it available.
1144 (defvar customize-package-emacs-version-alist nil
1145 "Alist mapping versions of a package to Emacs versions.
1146 We use this for packages that have their own names, but are released
1147 as part of Emacs itself.
1149 Each elements looks like this:
1151 (PACKAGE (PVERSION . EVERSION)...)
1153 Here PACKAGE is the name of a package, as a symbol. After
1154 PACKAGE come one or more elements, each associating a
1155 package version PVERSION with the first Emacs version
1156 EVERSION in which it (or a subsequent version of PACKAGE)
1157 was first released. Both PVERSION and EVERSION are strings.
1158 PVERSION should be a string that this package used in
1159 the :package-version keyword for `defcustom', `defgroup',
1162 For example, the MH-E package updates this alist as follows:
1164 (add-to-list 'customize-package-emacs-version-alist
1165 '(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\")
1166 (\"7.0\" . \"22.1\") (\"7.1\" . \"22.1\")
1167 (\"7.2\" . \"22.1\") (\"7.3\" . \"22.1\")
1168 (\"7.4\" . \"22.1\") (\"8.0\" . \"22.1\")))
1170 The value of PACKAGE needs to be unique and it needs to match the
1171 PACKAGE value appearing in the :package-version keyword. Since
1172 the user might see the value in a error message, a good choice is
1173 the official name of the package, such as MH-E or Gnus.")
1176 (defalias 'customize-changed
'customize-changed-options
)
1179 (defun customize-changed-options (&optional since-version
)
1180 "Customize all settings whose meanings have changed in Emacs itself.
1181 This includes new user option variables and faces, and new
1182 customization groups, as well as older options and faces whose meanings
1183 or default values have changed since the previous major Emacs release.
1185 With argument SINCE-VERSION (a string), customize all settings
1186 that were added or redefined since that version."
1190 (read-from-minibuffer
1191 (format "Customize options changed, since version (default %s): "
1192 customize-changed-options-previous-release
))))
1193 (if (equal since-version
"")
1194 (setq since-version nil
)
1195 (unless (condition-case nil
1196 (numberp (read since-version
))
1198 (signal 'wrong-type-argument
(list 'numberp since-version
))))
1199 (unless since-version
1200 (setq since-version customize-changed-options-previous-release
))
1202 ;; Load the information for versions since since-version. We use
1203 ;; custom-load-symbol for this.
1204 (put 'custom-versions-load-alist
'custom-loads nil
)
1205 (dolist (elt custom-versions-load-alist
)
1206 (if (customize-version-lessp since-version
(car elt
))
1207 (dolist (load (cdr elt
))
1208 (custom-add-load 'custom-versions-load-alist load
))))
1209 (custom-load-symbol 'custom-versions-load-alist
)
1210 (put 'custom-versions-load-alist
'custom-loads nil
)
1215 (let* ((package-version (get symbol
'custom-package-version
))
1217 (or (and package-version
1218 (customize-package-emacs-version symbol
1220 (get symbol
'custom-version
))))
1222 (when (customize-version-lessp since-version version
)
1223 (if (or (get symbol
'custom-group
)
1224 (get symbol
'group-documentation
))
1225 (push (list symbol
'custom-group
) found
))
1226 (if (custom-variable-p symbol
)
1227 (push (list symbol
'custom-variable
) found
))
1228 (if (custom-facep symbol
)
1229 (push (list symbol
'custom-face
) found
)))))))
1231 (custom-buffer-create (custom-sort-items found t
'first
)
1232 "*Customize Changed Options*")
1233 (error "No user option defaults have been changed since Emacs %s"
1236 (defun customize-package-emacs-version (symbol package-version
)
1237 "Return the Emacs version in which SYMBOL's meaning last changed.
1238 PACKAGE-VERSION has the form (PACKAGE . VERSION). We use
1239 `customize-package-emacs-version-alist' to find the version of
1240 Emacs that is associated with version VERSION of PACKAGE."
1241 (let (package-versions emacs-version
)
1242 ;; Use message instead of error since we want user to be able to
1243 ;; see the rest of the symbols even if a package author has
1244 ;; botched things up.
1245 (cond ((not (listp package-version
))
1246 (message "Invalid package-version value for %s" symbol
))
1247 ((setq package-versions
(assq (car package-version
)
1248 customize-package-emacs-version-alist
))
1250 (cdr (assoc (cdr package-version
) package-versions
)))
1251 (unless emacs-version
1252 (message "%s version %s not found in %s" symbol
1253 (cdr package-version
)
1254 "customize-package-emacs-version-alist")))
1256 (message "Package %s version %s lists no corresponding Emacs version"
1257 (car package-version
)
1258 (cdr package-version
))))
1261 (defun customize-version-lessp (version1 version2
)
1262 ;; Why are the versions strings, and given that they are, why aren't
1263 ;; they converted to numbers and compared as such here? -- fx
1265 ;; In case someone made a mistake and left out the quotes
1266 ;; in the :version value.
1267 (if (numberp version2
)
1268 (setq version2
(prin1-to-string version2
)))
1269 (let (major1 major2 minor1 minor2
)
1270 (string-match "\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" version1
)
1271 (setq major1
(read (or (match-string 1 version1
)
1273 (setq minor1
(read (or (match-string 3 version1
)
1275 (string-match "\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" version2
)
1276 (setq major2
(read (or (match-string 1 version2
)
1278 (setq minor2
(read (or (match-string 3 version2
)
1280 (or (< major1 major2
)
1281 (and (= major1 major2
)
1282 (< minor1 minor2
)))))
1285 (defun customize-face (&optional face
)
1286 "Customize FACE, which should be a face name or nil.
1287 If FACE is nil, customize all faces. If FACE is actually a
1288 face-alias, customize the face it is aliased to.
1290 Interactively, when point is on text which has a face specified,
1291 suggest to customize that face, if it's customizable."
1292 (interactive (list (read-face-name "Customize face" "all faces" t
)))
1293 (if (member face
'(nil ""))
1294 (setq face
(face-list)))
1295 (if (and (listp face
) (null (cdr face
)))
1296 (setq face
(car face
)))
1298 (custom-buffer-create
1300 (mapcar (lambda (s) (list s
'custom-face
)) face
)
1302 "*Customize Faces*")
1303 ;; If FACE is actually an alias, customize the face it is aliased to.
1304 (if (get face
'face-alias
)
1305 (setq face
(get face
'face-alias
)))
1306 (unless (facep face
)
1307 (error "Invalid face %S" face
))
1308 (custom-buffer-create
1309 (list (list face
'custom-face
))
1310 (format "*Customize Face: %s*"
1311 (custom-unlispify-tag-name face
)))))
1314 (defun customize-face-other-window (&optional face
)
1315 "Show customization buffer for face FACE in other window.
1316 If FACE is actually a face-alias, customize the face it is aliased to.
1318 Interactively, when point is on text which has a face specified,
1319 suggest to customize that face, if it's customizable."
1320 (interactive (list (read-face-name "Customize face" "all faces" t
)))
1321 (let ((pop-up-windows t
)
1322 (same-window-buffer-names nil
)
1323 (same-window-regexps nil
))
1324 (customize-face face
)))
1326 (defalias 'customize-customized
'customize-unsaved
)
1329 (defun customize-unsaved ()
1330 "Customize all user options set in this session but not saved."
1333 (mapatoms (lambda (symbol)
1334 (and (or (get symbol
'customized-face
)
1335 (get symbol
'customized-face-comment
))
1336 (custom-facep symbol
)
1337 (push (list symbol
'custom-face
) found
))
1338 (and (or (get symbol
'customized-value
)
1339 (get symbol
'customized-variable-comment
))
1341 (push (list symbol
'custom-variable
) found
))))
1343 (error "No user options are set but unsaved")
1344 (custom-buffer-create (custom-sort-items found t nil
)
1345 "*Customize Unsaved*"))))
1348 (defun customize-rogue ()
1349 "Customize all user variables modified outside customize."
1352 (mapatoms (lambda (symbol)
1353 (let ((cval (or (get symbol
'customized-value
)
1354 (get symbol
'saved-value
)
1355 (get symbol
'standard-value
))))
1356 (when (and cval
;Declared with defcustom.
1357 (default-boundp symbol
) ;Has a value.
1358 (not (equal (eval (car cval
))
1359 ;; Which does not match customize.
1360 (default-value symbol
))))
1361 (push (list symbol
'custom-variable
) found
)))))
1363 (error "No rogue user options")
1364 (custom-buffer-create (custom-sort-items found t nil
)
1365 "*Customize Rogue*"))))
1367 (defun customize-saved ()
1368 "Customize all already saved user options."
1371 (mapatoms (lambda (symbol)
1372 (and (or (get symbol
'saved-face
)
1373 (get symbol
'saved-face-comment
))
1374 (custom-facep symbol
)
1375 (push (list symbol
'custom-face
) found
))
1376 (and (or (get symbol
'saved-value
)
1377 (get symbol
'saved-variable-comment
))
1379 (push (list symbol
'custom-variable
) found
))))
1381 (error "No saved user options")
1382 (custom-buffer-create (custom-sort-items found t nil
)
1383 "*Customize Saved*"))))
1386 (defun customize-apropos (regexp &optional all
)
1387 "Customize all loaded options, faces and groups matching REGEXP.
1388 If ALL is `options', include only options.
1389 If ALL is `faces', include only faces.
1390 If ALL is `groups', include only groups.
1391 If ALL is t (interactively, with prefix arg), include variables
1392 that are not customizable options, as well as faces and groups
1393 \(but we recommend using `apropos-variable' instead)."
1394 (interactive "sCustomize (regexp): \nP")
1396 (mapatoms (lambda (symbol)
1397 (when (string-match regexp
(symbol-name symbol
))
1398 (when (and (not (memq all
'(faces options
)))
1399 (get symbol
'custom-group
))
1400 (push (list symbol
'custom-group
) found
))
1401 (when (and (not (memq all
'(options groups
)))
1402 (custom-facep symbol
))
1403 (push (list symbol
'custom-face
) found
))
1404 (when (and (not (memq all
'(groups faces
)))
1406 (eq (indirect-variable symbol
) symbol
)
1407 (or (get symbol
'saved-value
)
1408 (custom-variable-p symbol
)
1409 (and (not (memq all
'(nil options
)))
1410 (get symbol
'variable-documentation
))))
1411 (push (list symbol
'custom-variable
) found
)))))
1413 (error "No %s matching %s"
1416 (format "customizable %s"
1417 (if (memq all
'(options faces groups
))
1421 (custom-buffer-create
1422 (custom-sort-items found t custom-buffer-order-groups
)
1423 "*Customize Apropos*"))))
1426 (defun customize-apropos-options (regexp &optional arg
)
1427 "Customize all loaded customizable options matching REGEXP.
1428 With prefix ARG, include variables that are not customizable options
1429 \(but it is better to use `apropos-variable' if you want to find those)."
1430 (interactive "sCustomize options (regexp): \nP")
1431 (customize-apropos regexp
(or arg
'options
)))
1434 (defun customize-apropos-faces (regexp)
1435 "Customize all loaded faces matching REGEXP."
1436 (interactive "sCustomize faces (regexp): \n")
1437 (customize-apropos regexp
'faces
))
1440 (defun customize-apropos-groups (regexp)
1441 "Customize all loaded groups matching REGEXP."
1442 (interactive "sCustomize groups (regexp): \n")
1443 (customize-apropos regexp
'groups
))
1447 (defcustom custom-buffer-style
'links
1448 "Control the presentation style for customization buffers.
1449 The value should be a symbol, one of:
1451 brackets: groups nest within each other with big horizontal brackets.
1452 links: groups have links to subgroups."
1453 :type
'(radio (const brackets
)
1455 :group
'custom-buffer
)
1457 (defcustom custom-buffer-done-kill nil
1458 "Non-nil means exiting a Custom buffer should kill it."
1461 :group
'custom-buffer
)
1463 (defcustom custom-buffer-indent
3
1464 "Number of spaces to indent nested groups."
1466 :group
'custom-buffer
)
1468 (defun custom-get-fresh-buffer (name)
1469 "Get a fresh new buffer with name NAME.
1470 If the buffer already exist, clean it up to be like new.
1471 Beware: it's not quite like new. Good enough for custom, but maybe
1473 ;; To be more complete, we should also kill all permanent-local variables,
1474 ;; but it's not needed for custom.
1475 (let ((buf (get-buffer name
)))
1476 (when (and buf
(buffer-local-value 'buffer-file-name buf
))
1477 ;; This will check if the file is not saved.
1481 (get-buffer-create name
)
1482 (with-current-buffer buf
1483 (kill-all-local-variables)
1484 (run-hooks 'kill-buffer-hook
)
1485 ;; Delete overlays before erasing the buffer so the overlay hooks
1486 ;; don't get run spuriously when we erase the buffer.
1487 (let ((ols (overlay-lists)))
1488 (dolist (ol (nconc (car ols
) (cdr ols
)))
1489 (delete-overlay ol
)))
1494 (defun custom-buffer-create (options &optional name description
)
1495 "Create a buffer containing OPTIONS.
1496 Optional NAME is the name of the buffer.
1497 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
1498 SYMBOL is a customization option, and WIDGET is a widget for editing
1500 (pop-to-buffer (custom-get-fresh-buffer (or name
"*Customization*")))
1501 (custom-buffer-create-internal options description
))
1504 (defun custom-buffer-create-other-window (options &optional name description
)
1505 "Create a buffer containing OPTIONS, and display it in another window.
1506 The result includes selecting that window.
1507 Optional NAME is the name of the buffer.
1508 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
1509 SYMBOL is a customization option, and WIDGET is a widget for editing
1511 (unless name
(setq name
"*Customization*"))
1512 (let ((pop-up-windows t
)
1513 (same-window-buffer-names nil
)
1514 (same-window-regexps nil
))
1515 (pop-to-buffer (custom-get-fresh-buffer name
))
1516 (custom-buffer-create-internal options description
)))
1518 (defcustom custom-reset-button-menu nil
1519 "If non-nil, only show a single reset button in customize buffers.
1520 This button will have a menu with all three reset operations."
1522 :group
'custom-buffer
)
1524 (defcustom custom-buffer-verbose-help t
1525 "If non-nil, include explanatory text in the customization buffer."
1527 :group
'custom-buffer
)
1529 (defun Custom-buffer-done (&rest ignore
)
1530 "Exit current Custom buffer according to `custom-buffer-done-kill'."
1532 (quit-window custom-buffer-done-kill
))
1534 (defvar custom-button nil
1535 "Face used for buttons in customization buffers.")
1537 (defvar custom-button-mouse nil
1538 "Mouse face used for buttons in customization buffers.")
1540 (defvar custom-button-pressed nil
1541 "Face used for pressed buttons in customization buffers.")
1543 (defcustom custom-raised-buttons
(not (equal (face-valid-attribute-values :box
)
1544 '(("unspecified" . unspecified
))))
1545 "If non-nil, indicate active buttons in a `raised-button' style.
1546 Otherwise use brackets."
1549 :group
'custom-buffer
1550 :set
(lambda (variable value
)
1551 (custom-set-default variable value
)
1553 (if value
'custom-button
'custom-button-unraised
))
1554 (setq custom-button-mouse
1555 (if value
'custom-button-mouse
'highlight
))
1556 (setq custom-button-pressed
1558 'custom-button-pressed
1559 'custom-button-pressed-unraised
))))
1561 (defun custom-buffer-create-internal (options &optional description
)
1563 (let ((init-file (or custom-file user-init-file
)))
1564 ;; Insert verbose help at the top of the custom buffer.
1565 (when custom-buffer-verbose-help
1566 (widget-insert "Editing a setting changes only the text in this buffer."
1569 To apply your changes, use the Save or Set buttons.
1570 Saving a change normally works by editing your init file."
1572 Currently, these settings cannot be saved for future Emacs sessions,
1573 possibly because you started Emacs with `-q'.")
1574 "\nFor details, see ")
1575 (widget-create 'custom-manual
1576 :tag
"Saving Customizations"
1577 "(emacs)Saving Customizations")
1578 (widget-insert " in the ")
1579 (widget-create 'custom-manual
1581 :help-echo
"Read the Emacs manual."
1583 (widget-insert "."))
1584 (widget-insert "\n")
1585 ;; The custom command buttons are also in the toolbar, so for a
1586 ;; time they were not inserted in the buffer if the toolbar was in use.
1587 ;; But it can be a little confusing for the buffer layout to
1588 ;; change according to whether or nor the toolbar is on, not to
1589 ;; mention that a custom buffer can in theory be created in a
1590 ;; frame with a toolbar, then later viewed in one without.
1591 ;; So now the buttons are always inserted in the buffer. (Bug#1326)
1592 ;;; (when (not (and (bound-and-true-p tool-bar-mode) (display-graphic-p)))
1593 (if custom-buffer-verbose-help
1595 Operate on all settings in this buffer that are not marked HIDDEN:\n"))
1596 (let ((button (lambda (tag action active help icon
)
1599 (widget-create 'push-button
:tag tag
1600 :help-echo help
:action action
))))
1601 (commands custom-commands
))
1602 (apply button
(pop commands
)) ; Set for current session
1603 (apply button
(pop commands
)) ; Save for future sessions
1604 (if custom-reset-button-menu
1607 (widget-create 'push-button
1609 :help-echo
"Show a menu with reset operations."
1610 :mouse-down-action
'ignore
1611 :action
'custom-reset
))
1612 (widget-insert "\n")
1613 (apply button
(pop commands
)) ; Undo edits
1614 (apply button
(pop commands
)) ; Reset to saved
1615 (apply button
(pop commands
)) ; Erase customization
1617 (pop commands
) ; Help (omitted)
1618 (apply button
(pop commands
)))) ; Exit
1619 (widget-insert "\n\n"))
1621 ;; Now populate the custom buffer.
1622 (message "Creating customization items...")
1623 (buffer-disable-undo)
1624 (setq custom-options
1625 (if (= (length options
) 1)
1626 (mapcar (lambda (entry)
1627 (widget-create (nth 1 entry
)
1628 :documentation-shown t
1629 :custom-state
'unknown
1630 :tag
(custom-unlispify-tag-name
1632 :value
(nth 0 entry
)))
1635 (length (length options
)))
1636 (mapcar (lambda (entry)
1638 (message "Creating customization items ...%2d%%"
1639 (/ (* 100.0 count
) length
))
1640 (widget-create (nth 1 entry
)
1641 :tag
(custom-unlispify-tag-name
1643 :value
(nth 0 entry
))
1644 (setq count
(1+ count
))
1645 (unless (eq (preceding-char) ?
\n)
1646 (widget-insert "\n"))
1647 (widget-insert "\n")))
1649 (unless (eq (preceding-char) ?
\n)
1650 (widget-insert "\n"))
1651 (message "Creating customization items ...done")
1652 (message "Resetting customization items...")
1653 (unless (eq custom-buffer-style
'tree
)
1654 (mapc 'custom-magic-reset custom-options
))
1655 (message "Resetting customization items...done")
1656 (message "Creating customization setup...")
1658 (buffer-enable-undo)
1659 (goto-char (point-min))
1660 (message "Creating customization setup...done"))
1662 ;;; The Tree Browser.
1665 (defun customize-browse (&optional group
)
1666 "Create a tree browser for the customize hierarchy."
1669 (setq group
'emacs
))
1670 (let ((name "*Customize Browser*"))
1671 (pop-to-buffer (custom-get-fresh-buffer name
)))
1673 (widget-insert (format "\
1674 %s buttons; type RET or click mouse-1
1675 on a button to invoke its action.
1676 Invoke [+] to expand a group, and [-] to collapse an expanded group.\n"
1677 (if custom-raised-buttons
1678 "`Raised' text indicates"
1679 "Square brackets indicate")))
1682 (if custom-browse-only-groups
1684 Invoke the [Group] button below to edit that item in another window.\n\n")
1685 (widget-insert "Invoke the ")
1686 (widget-create 'item
1689 :tag-glyph
"folder")
1690 (widget-insert ", ")
1691 (widget-create 'item
1695 (widget-insert ", and ")
1696 (widget-create 'item
1699 :tag-glyph
"option")
1700 (widget-insert " buttons below to edit that
1701 item in another window.\n\n"))
1702 (let ((custom-buffer-style 'tree
))
1703 (widget-create 'custom-group
1705 :custom-state
'unknown
1706 :tag
(custom-unlispify-tag-name group
)
1709 (goto-char (point-min)))
1711 (define-widget 'custom-browse-visibility
'item
1712 "Control visibility of items in the customize tree browser."
1714 :action
'custom-browse-visibility-action
)
1716 (defun custom-browse-visibility-action (widget &rest ignore
)
1717 (let ((custom-buffer-style 'tree
))
1718 (custom-toggle-parent widget
)))
1720 (define-widget 'custom-browse-group-tag
'custom-group-link
1721 "Show parent in other window when activated."
1724 :action
'custom-browse-group-tag-action
)
1726 (defun custom-browse-group-tag-action (widget &rest ignore
)
1727 (let ((parent (widget-get widget
:parent
)))
1728 (customize-group-other-window (widget-value parent
))))
1730 (define-widget 'custom-browse-variable-tag
'custom-group-link
1731 "Show parent in other window when activated."
1734 :action
'custom-browse-variable-tag-action
)
1736 (defun custom-browse-variable-tag-action (widget &rest ignore
)
1737 (let ((parent (widget-get widget
:parent
)))
1738 (customize-variable-other-window (widget-value parent
))))
1740 (define-widget 'custom-browse-face-tag
'custom-group-link
1741 "Show parent in other window when activated."
1744 :action
'custom-browse-face-tag-action
)
1746 (defun custom-browse-face-tag-action (widget &rest ignore
)
1747 (let ((parent (widget-get widget
:parent
)))
1748 (customize-face-other-window (widget-value parent
))))
1750 (defconst custom-browse-alist
'((" " "space")
1756 (defun custom-browse-insert-prefix (prefix)
1757 "Insert PREFIX. On XEmacs convert it to line graphics."
1758 ;; Fixme: do graphics.
1759 (if nil
; (featurep 'xemacs)
1762 (while (not (string-equal prefix
""))
1763 (let ((entry (substring prefix
0 3)))
1764 (setq prefix
(substring prefix
3))
1765 (let ((overlay (make-overlay (1- (point)) (point) nil t nil
))
1766 (name (nth 1 (assoc entry custom-browse-alist
))))
1767 (overlay-put overlay
'end-glyph
(widget-glyph-find name entry
))
1768 (overlay-put overlay
'start-open t
)
1769 (overlay-put overlay
'end-open t
)))))
1772 ;;; Modification of Basic Widgets.
1774 ;; We add extra properties to the basic widgets needed here. This is
1775 ;; fine, as long as we are careful to stay within our own namespace.
1777 ;; We want simple widgets to be displayed by default, but complex
1778 ;; widgets to be hidden.
1780 (widget-put (get 'item
'widget-type
) :custom-show t
)
1781 (widget-put (get 'editable-field
'widget-type
)
1782 :custom-show
(lambda (widget value
)
1783 (let ((pp (pp-to-string value
)))
1784 (cond ((string-match "\n" pp
)
1789 (widget-put (get 'menu-choice
'widget-type
) :custom-show t
)
1791 ;;; The `custom-manual' Widget.
1793 (define-widget 'custom-manual
'info-link
1794 "Link to the manual entry for this customization option."
1795 :help-echo
"Read the manual entry for this option."
1796 :keymap custom-mode-link-map
1797 :follow-link
'mouse-face
1798 :button-face
'custom-link
1799 :mouse-face
'highlight
1800 :pressed-face
'highlight
1803 ;;; The `custom-magic' Widget.
1805 (defgroup custom-magic-faces nil
1806 "Faces used by the magic button."
1807 :group
'custom-faces
1808 :group
'custom-buffer
)
1810 (defface custom-invalid
'((((class color
))
1811 (:foreground
"yellow1" :background
"red1"))
1813 (:weight bold
:slant italic
:underline t
)))
1814 "Face used when the customize item is invalid."
1815 :group
'custom-magic-faces
)
1816 ;; backward-compatibility alias
1817 (put 'custom-invalid-face
'face-alias
'custom-invalid
)
1819 (defface custom-rogue
'((((class color
))
1820 (:foreground
"pink" :background
"black"))
1823 "Face used when the customize item is not defined for customization."
1824 :group
'custom-magic-faces
)
1825 ;; backward-compatibility alias
1826 (put 'custom-rogue-face
'face-alias
'custom-rogue
)
1828 (defface custom-modified
'((((min-colors 88) (class color
))
1829 (:foreground
"white" :background
"blue1"))
1831 (:foreground
"white" :background
"blue"))
1833 (:slant italic
:bold
)))
1834 "Face used when the customize item has been modified."
1835 :group
'custom-magic-faces
)
1836 ;; backward-compatibility alias
1837 (put 'custom-modified-face
'face-alias
'custom-modified
)
1839 (defface custom-set
'((((min-colors 88) (class color
))
1840 (:foreground
"blue1" :background
"white"))
1842 (:foreground
"blue" :background
"white"))
1845 "Face used when the customize item has been set."
1846 :group
'custom-magic-faces
)
1847 ;; backward-compatibility alias
1848 (put 'custom-set-face
'face-alias
'custom-set
)
1850 (defface custom-changed
'((((min-colors 88) (class color
))
1851 (:foreground
"white" :background
"blue1"))
1853 (:foreground
"white" :background
"blue"))
1856 "Face used when the customize item has been changed."
1857 :group
'custom-magic-faces
)
1858 ;; backward-compatibility alias
1859 (put 'custom-changed-face
'face-alias
'custom-changed
)
1861 (defface custom-themed
'((((min-colors 88) (class color
))
1862 (:foreground
"white" :background
"blue1"))
1864 (:foreground
"white" :background
"blue"))
1867 "Face used when the customize item has been set by a theme."
1868 :group
'custom-magic-faces
)
1870 (defface custom-saved
'((t (:underline t
)))
1871 "Face used when the customize item has been saved."
1872 :group
'custom-magic-faces
)
1873 ;; backward-compatibility alias
1874 (put 'custom-saved-face
'face-alias
'custom-saved
)
1876 (defconst custom-magic-alist
1877 '((nil "#" underline
"\
1878 UNINITIALIZED, you should not see this.")
1879 (unknown "?" italic
"\
1880 UNKNOWN, you should not see this.")
1881 (hidden "-" default
"\
1882 HIDDEN, invoke \"Show\" in the previous line to show." "\
1883 group now hidden, invoke \"Show\", above, to show contents.")
1884 (invalid "x" custom-invalid
"\
1885 INVALID, the displayed value cannot be set.")
1886 (modified "*" custom-modified
"\
1887 EDITED, shown value does not take effect until you set or save it." "\
1888 something in this group has been edited but not set.")
1889 (set "+" custom-set
"\
1890 SET for current session only." "\
1891 something in this group has been set but not saved.")
1892 (changed ":" custom-changed
"\
1893 CHANGED outside Customize; operating on it here may be unreliable." "\
1894 something in this group has been changed outside customize.")
1895 (saved "!" custom-saved
"\
1897 something in this group has been set and saved.")
1898 (themed "o" custom-themed
"\
1900 visible group members are all at standard values.")
1901 (rogue "@" custom-rogue
"\
1902 NO CUSTOMIZATION DATA; not intended to be customized." "\
1903 something in this group is not prepared for customization.")
1904 (standard " " nil
"\
1906 visible group members are all at standard values."))
1907 "Alist of customize option states.
1908 Each entry is of the form (STATE MAGIC FACE ITEM-DESC [ GROUP-DESC ]), where
1910 STATE is one of the following symbols:
1913 For internal use, should never occur.
1915 For internal use, should never occur.
1917 This item is not being displayed.
1919 This item is modified, but has an invalid form.
1921 This item is modified, and has a valid form.
1923 This item has been set but not saved.
1925 The current value of this item has been changed outside Customize.
1927 This item is marked for saving.
1929 This item has no customization information.
1931 This item is unchanged from the standard setting.
1933 MAGIC is a string used to present that state.
1935 FACE is a face used to present the state.
1937 ITEM-DESC is a string describing the state for options.
1939 GROUP-DESC is a string describing the state for groups. If this is
1940 left out, ITEM-DESC will be used.
1942 The string %c in either description will be replaced with the
1943 category of the item. These are `group'. `option', and `face'.
1945 The list should be sorted most significant first.")
1947 (defcustom custom-magic-show
'long
1948 "If non-nil, show textual description of the state.
1949 If `long', show a full-line description, not just one word."
1950 :type
'(choice (const :tag
"no" nil
)
1952 (other :tag
"short" short
))
1953 :group
'custom-buffer
)
1955 (defcustom custom-magic-show-hidden
'(option face
)
1956 "Control whether the State button is shown for hidden items.
1957 The value should be a list with the custom categories where the State
1958 button should be visible. Possible categories are `group', `option',
1960 :type
'(set (const group
) (const option
) (const face
))
1961 :group
'custom-buffer
)
1963 (defcustom custom-magic-show-button nil
1964 "Show a \"magic\" button indicating the state of each customization option."
1966 :group
'custom-buffer
)
1968 (define-widget 'custom-magic
'default
1969 "Show and manipulate state for a customization option."
1971 :action
'widget-parent-action
1974 :value-create
'custom-magic-value-create
1975 :value-delete
'widget-children-value-delete
)
1977 (defun widget-magic-mouse-down-action (widget &optional event
)
1978 ;; Non-nil unless hidden.
1979 (not (eq (widget-get (widget-get (widget-get widget
:parent
) :parent
)
1983 (defun custom-magic-value-create (widget)
1984 "Create compact status report for WIDGET."
1985 (let* ((parent (widget-get widget
:parent
))
1986 (state (widget-get parent
:custom-state
))
1987 (hidden (eq state
'hidden
))
1988 (entry (assq state custom-magic-alist
))
1989 (magic (nth 1 entry
))
1990 (face (nth 2 entry
))
1991 (category (widget-get parent
:custom-category
))
1992 (text (or (and (eq category
'group
)
1995 (form (widget-get parent
:custom-form
))
1997 (while (string-match "\\`\\(.*\\)%c\\(.*\\)\\'" text
)
1998 (setq text
(concat (match-string 1 text
)
1999 (symbol-name category
)
2000 (match-string 2 text
))))
2001 (when (and custom-magic-show
2003 (memq category custom-magic-show-hidden
)))
2005 (when (and (eq category
'group
)
2006 (not (and (eq custom-buffer-style
'links
)
2007 (> (widget-get parent
:custom-level
) 1))))
2008 (insert-char ?\
(* custom-buffer-indent
2009 (widget-get parent
:custom-level
))))
2010 (push (widget-create-child-and-convert
2012 :help-echo
"Change the state of this item."
2013 :format
(if hidden
"%t" "%[%t%]")
2014 :button-prefix
'widget-push-button-prefix
2015 :button-suffix
'widget-push-button-suffix
2016 :mouse-down-action
'widget-magic-mouse-down-action
2020 (let ((start (point)))
2021 (if (eq custom-magic-show
'long
)
2023 (insert (symbol-name state
)))
2024 (cond ((eq form
'lisp
)
2026 ((eq form
'mismatch
)
2027 (insert " (mismatch)")))
2028 (put-text-property start
(point) 'face
'custom-state
))
2030 (when (and (eq category
'group
)
2031 (not (and (eq custom-buffer-style
'links
)
2032 (> (widget-get parent
:custom-level
) 1))))
2033 (insert-char ?\
(* custom-buffer-indent
2034 (widget-get parent
:custom-level
))))
2035 (when custom-magic-show-button
2036 (when custom-magic-show
2037 (let ((indent (widget-get parent
:indent
)))
2039 (insert-char ? indent
))))
2040 (push (widget-create-child-and-convert
2042 :mouse-down-action
'widget-magic-mouse-down-action
2046 :help-echo
"Change the state."
2047 :format
(if hidden
"%t" "%[%t%]")
2048 :tag
(if (memq form
'(lisp mismatch
))
2049 (concat "(" magic
")")
2050 (concat "[" magic
"]")))
2053 (widget-put widget
:children children
)))
2055 (defun custom-magic-reset (widget)
2056 "Redraw the :custom-magic property of WIDGET."
2057 (let ((magic (widget-get widget
:custom-magic
)))
2058 (widget-value-set magic
(widget-value magic
))))
2060 ;;; The `custom' Widget.
2062 (defface custom-button
2063 '((((type x w32 ns
) (class color
)) ; Like default modeline
2064 (:box
(:line-width
2 :style released-button
)
2065 :background
"lightgrey" :foreground
"black"))
2068 "Face for custom buffer buttons if `custom-raised-buttons' is non-nil."
2070 :group
'custom-faces
)
2071 ;; backward-compatibility alias
2072 (put 'custom-button-face
'face-alias
'custom-button
)
2074 (defface custom-button-mouse
2075 '((((type x w32 ns
) (class color
))
2076 (:box
(:line-width
2 :style released-button
)
2077 :background
"grey90" :foreground
"black"))
2079 ;; This is for text terminals that support mouse, like GPM mouse
2080 ;; or the MS-DOS terminal: inverse-video makes the button stand
2081 ;; out on mouse-over.
2082 (:inverse-video t
)))
2083 "Mouse face for custom buffer buttons if `custom-raised-buttons' is non-nil."
2085 :group
'custom-faces
)
2087 (defface custom-button-unraised
2088 '((t :inherit underline
))
2089 "Face for custom buffer buttons if `custom-raised-buttons' is nil."
2091 :group
'custom-faces
)
2094 (if custom-raised-buttons
'custom-button
'custom-button-unraised
))
2096 (setq custom-button-mouse
2097 (if custom-raised-buttons
'custom-button-mouse
'highlight
))
2099 (defface custom-button-pressed
2100 '((((type x w32 ns
) (class color
))
2101 (:box
(:line-width
2 :style pressed-button
)
2102 :background
"lightgrey" :foreground
"black"))
2104 (:inverse-video t
)))
2105 "Face for pressed custom buttons if `custom-raised-buttons' is non-nil."
2107 :group
'custom-faces
)
2108 ;; backward-compatibility alias
2109 (put 'custom-button-pressed-face
'face-alias
'custom-button-pressed
)
2111 (defface custom-button-pressed-unraised
2112 '((default :inherit custom-button-unraised
)
2113 (((class color
) (background light
)) :foreground
"magenta4")
2114 (((class color
) (background dark
)) :foreground
"violet"))
2115 "Face for pressed custom buttons if `custom-raised-buttons' is nil."
2117 :group
'custom-faces
)
2119 (setq custom-button-pressed
2120 (if custom-raised-buttons
2121 'custom-button-pressed
2122 'custom-button-pressed-unraised
))
2124 (defface custom-documentation
'((t nil
))
2125 "Face used for documentation strings in customization buffers."
2126 :group
'custom-faces
)
2127 ;; backward-compatibility alias
2128 (put 'custom-documentation-face
'face-alias
'custom-documentation
)
2130 (defface custom-state
'((((class color
)
2132 (:foreground
"lime green"))
2135 (:foreground
"dark green"))
2137 "Face used for State descriptions in the customize buffer."
2138 :group
'custom-faces
)
2139 ;; backward-compatibility alias
2140 (put 'custom-state-face
'face-alias
'custom-state
)
2142 (defface custom-link
2143 '((t :inherit link
))
2144 "Face for links in customization buffers."
2146 :group
'custom-faces
)
2148 (define-widget 'custom
'default
2149 "Customize a user option."
2151 :convert-widget
'custom-convert-widget
2152 :notify
'custom-notify
2155 :custom-state
'hidden
2156 :documentation-property
'widget-subclass-responsibility
2157 :value-create
'widget-subclass-responsibility
2158 :value-delete
'widget-children-value-delete
2159 :value-get
'widget-value-value-get
2160 :validate
'widget-children-validate
2161 :match
(lambda (widget value
) (symbolp value
)))
2163 (defun custom-convert-widget (widget)
2164 "Initialize :value and :tag from :args in WIDGET."
2165 (let ((args (widget-get widget
:args
)))
2167 (widget-put widget
:value
(widget-apply widget
2168 :value-to-internal
(car args
)))
2169 (widget-put widget
:tag
(custom-unlispify-tag-name (car args
)))
2170 (widget-put widget
:args nil
)))
2173 (defun custom-notify (widget &rest args
)
2174 "Keep track of changes."
2175 (let ((state (widget-get widget
:custom-state
)))
2176 (unless (eq state
'modified
)
2177 (unless (memq state
'(nil unknown hidden
))
2178 (widget-put widget
:custom-state
'modified
))
2179 (custom-magic-reset widget
)
2180 (apply 'widget-default-notify widget args
))))
2182 (defun custom-redraw (widget)
2183 "Redraw WIDGET with current settings."
2184 (let ((line (count-lines (point-min) (point)))
2185 (column (current-column))
2187 (from (marker-position (widget-get widget
:from
)))
2188 (to (marker-position (widget-get widget
:to
))))
2190 (widget-value-set widget
(widget-value widget
))
2191 (custom-redraw-magic widget
))
2192 (when (and (>= pos from
) (<= pos to
))
2197 (goto-line (1+ line
)))
2198 (move-to-column column
))
2201 (defun custom-redraw-magic (widget)
2202 "Redraw WIDGET state with current settings."
2204 (let ((magic (widget-get widget
:custom-magic
)))
2206 (widget-value-set magic
(widget-value magic
))
2207 (when (setq widget
(widget-get widget
:group
))
2208 (custom-group-state-update widget
)))
2210 (setq widget nil
)))))
2213 (defun custom-show (widget value
)
2214 "Non-nil if WIDGET should be shown with VALUE by default."
2215 (let ((show (widget-get widget
:custom-show
)))
2221 (funcall show widget value
)))))
2223 (defun custom-load-widget (widget)
2224 "Load all dependencies for WIDGET."
2225 (custom-load-symbol (widget-value widget
)))
2227 (defun custom-unloaded-symbol-p (symbol)
2228 "Return non-nil if the dependencies of SYMBOL have not yet been loaded."
2230 (loads (get symbol
'custom-loads
))
2233 (setq load
(car loads
)
2235 (cond ((symbolp load
)
2236 (unless (featurep load
)
2238 ((assoc load load-history
))
2239 ((assoc (locate-library load
) load-history
)
2245 (defun custom-unloaded-widget-p (widget)
2246 "Return non-nil if the dependencies of WIDGET have not yet been loaded."
2247 (custom-unloaded-symbol-p (widget-value widget
)))
2249 (defun custom-toggle-hide (widget)
2250 "Toggle visibility of WIDGET."
2251 (custom-load-widget widget
)
2252 (let ((state (widget-get widget
:custom-state
)))
2253 (cond ((memq state
'(invalid modified set
))
2254 (error "There are unsaved changes"))
2256 (widget-put widget
:custom-state
'unknown
))
2258 (widget-put widget
:documentation-shown nil
)
2259 (widget-put widget
:custom-state
'hidden
)))
2260 (custom-redraw widget
)
2263 (defun custom-toggle-parent (widget &rest ignore
)
2264 "Toggle visibility of parent of WIDGET."
2265 (custom-toggle-hide (widget-get widget
:parent
)))
2267 (defun custom-add-see-also (widget &optional prefix
)
2268 "Add `See also ...' to WIDGET if there are any links.
2269 Insert PREFIX first if non-nil."
2270 (let* ((symbol (widget-get widget
:value
))
2271 (links (get symbol
'custom-links
))
2272 (many (> (length links
) 2))
2273 (buttons (widget-get widget
:buttons
))
2274 (indent (widget-get widget
:indent
)))
2277 (insert-char ?\ indent
))
2280 (insert "See also ")
2282 (push (widget-create-child-and-convert
2284 :button-face
'custom-link
2285 :mouse-face
'highlight
2286 :pressed-face
'highlight
)
2288 (setq links
(cdr links
))
2297 (widget-put widget
:buttons buttons
))))
2299 (defun custom-add-parent-links (widget &optional initial-string
2301 "Add \"Parent groups: ...\" to WIDGET if the group has parents.
2302 The value is non-nil if any parents were found.
2303 If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
2304 (let ((name (widget-value widget
))
2305 (type (widget-type widget
))
2306 (buttons (widget-get widget
:buttons
))
2309 (insert (or initial-string
"Groups:"))
2310 (mapatoms (lambda (symbol)
2311 (when (member (list name type
) (get symbol
'custom-group
))
2313 (push (widget-create-child-and-convert
2314 widget
'custom-group-link
2315 :tag
(custom-unlispify-tag-name symbol
)
2318 (setq parents
(cons symbol parents
)))))
2319 (and (null (get name
'custom-links
)) ;No links of its own.
2320 (= (length parents
) 1) ;A single parent.
2321 (let* ((links (delq nil
(mapcar (lambda (w)
2322 (unless (eq (widget-type w
)
2325 (get (car parents
) 'custom-links
))))
2326 (many (> (length links
) 2)))
2329 (left-margin (+ left-margin
2)))
2330 (insert "\n" (or doc-initial-string
"Group documentation:") " ")
2332 (push (widget-create-child-and-convert
2334 :button-face
'custom-link
2335 :mouse-face
'highlight
2336 :pressed-face
'highlight
)
2338 (setq links
(cdr links
))
2347 (fill-region-as-paragraph pt
(point))
2348 (delete-to-left-margin (1+ pt
) (+ pt
2))))))
2351 (delete-region start
(point)))
2352 (widget-put widget
:buttons buttons
)
2355 ;;; The `custom-comment' Widget.
2357 ;; like the editable field
2358 (defface custom-comment
'((((type tty
))
2359 :background
"yellow3"
2360 :foreground
"black")
2361 (((class grayscale color
)
2363 :background
"gray85")
2364 (((class grayscale color
)
2366 :background
"dim gray")
2369 "Face used for comments on variables or faces."
2371 :group
'custom-faces
)
2372 ;; backward-compatibility alias
2373 (put 'custom-comment-face
'face-alias
'custom-comment
)
2375 ;; like font-lock-comment-face
2376 (defface custom-comment-tag
2377 '((((class color
) (background dark
)) (:foreground
"gray80"))
2378 (((class color
) (background light
)) (:foreground
"blue4"))
2379 (((class grayscale
) (background light
))
2380 (:foreground
"DimGray" :weight bold
:slant italic
))
2381 (((class grayscale
) (background dark
))
2382 (:foreground
"LightGray" :weight bold
:slant italic
))
2384 "Face used for the comment tag on variables or faces."
2385 :group
'custom-faces
)
2386 ;; backward-compatibility alias
2387 (put 'custom-comment-tag-face
'face-alias
'custom-comment-tag
)
2389 (define-widget 'custom-comment
'string
2392 :help-echo
"Edit a comment here."
2393 :sample-face
'custom-comment-tag
2394 :value-face
'custom-comment
2396 :create
'custom-comment-create
)
2398 (defun custom-comment-create (widget)
2399 (let* ((null-comment (equal "" (widget-value widget
))))
2400 (if (or (widget-get (widget-get widget
:parent
) :comment-shown
)
2402 (widget-default-create widget
)
2403 ;; `widget-default-delete' expects markers in these slots --
2404 ;; maybe it shouldn't.
2405 (widget-put widget
:from
(point-marker))
2406 (widget-put widget
:to
(point-marker)))))
2408 (defun custom-comment-hide (widget)
2409 (widget-put (widget-get widget
:parent
) :comment-shown nil
))
2411 ;; Those functions are for the menu. WIDGET is NOT the comment widget. It's
2412 ;; the global custom one
2413 (defun custom-comment-show (widget)
2414 (widget-put widget
:comment-shown t
)
2415 (custom-redraw widget
)
2418 (defun custom-comment-invisible-p (widget)
2419 (let ((val (widget-value (widget-get widget
:comment-widget
))))
2421 (not (widget-get widget
:comment-shown
)))))
2423 ;;; The `custom-variable' Widget.
2425 ;; When this was underlined blue, users confused it with a
2426 ;; Mosaic-style hyperlink...
2427 (defface custom-variable-tag
2430 (:foreground
"light blue" :weight bold
))
2431 (((min-colors 88) (class color
)
2433 (:foreground
"blue1" :weight bold
))
2436 (:foreground
"blue" :weight bold
))
2438 "Face used for unpushable variable tags."
2439 :group
'custom-faces
)
2440 ;; backward-compatibility alias
2441 (put 'custom-variable-tag-face
'face-alias
'custom-variable-tag
)
2443 (defface custom-variable-button
'((t (:underline t
:weight bold
)))
2444 "Face used for pushable variable tags."
2445 :group
'custom-faces
)
2446 ;; backward-compatibility alias
2447 (put 'custom-variable-button-face
'face-alias
'custom-variable-button
)
2449 (defcustom custom-variable-default-form
'edit
2450 "Default form of displaying variable values."
2451 :type
'(choice (const edit
)
2453 :group
'custom-buffer
2456 (defun custom-variable-documentation (variable)
2457 "Return documentation of VARIABLE for use in Custom buffer.
2458 Normally just return the docstring. But if VARIABLE automatically
2459 becomes buffer local when set, append a message to that effect."
2460 (if (and (local-variable-if-set-p variable
)
2461 (or (not (local-variable-p variable
))
2463 (local-variable-if-set-p variable
))))
2464 (concat (documentation-property variable
'variable-documentation
)
2466 This variable automatically becomes buffer-local when set outside Custom.
2467 However, setting it through Custom sets the default value.")
2468 (documentation-property variable
'variable-documentation
)))
2470 (define-widget 'custom-variable
'custom
2471 "Customize variable."
2473 :help-echo
"Set or reset this variable."
2474 :documentation-property
#'custom-variable-documentation
2475 :custom-category
'option
2477 :custom-menu
'custom-variable-menu-create
2478 :custom-form nil
; defaults to value of `custom-variable-default-form'
2479 :value-create
'custom-variable-value-create
2480 :action
'custom-variable-action
2481 :custom-set
'custom-variable-set
2482 :custom-mark-to-save
'custom-variable-mark-to-save
2483 :custom-reset-current
'custom-redraw
2484 :custom-reset-saved
'custom-variable-reset-saved
2485 :custom-reset-standard
'custom-variable-reset-standard
2486 :custom-mark-to-reset-standard
'custom-variable-mark-to-reset-standard
2487 :custom-standard-value
'custom-variable-standard-value
2488 :custom-state-set-and-redraw
'custom-variable-state-set-and-redraw
)
2490 (defun custom-variable-type (symbol)
2491 "Return a widget suitable for editing the value of SYMBOL.
2492 If SYMBOL has a `custom-type' property, use that.
2493 Otherwise, try matching SYMBOL against `custom-guess-name-alist' and
2494 try matching its doc string against `custom-guess-doc-alist'."
2495 (let* ((type (or (get symbol
'custom-type
)
2496 (and (not (get symbol
'standard-value
))
2497 (custom-guess-type symbol
))
2499 (options (get symbol
'custom-options
))
2500 (tmp (if (listp type
)
2501 (copy-sequence type
)
2504 (widget-put tmp
:options options
))
2507 (defun custom-variable-value-create (widget)
2508 "Here is where you edit the variable's value."
2509 (custom-load-widget widget
)
2510 (unless (widget-get widget
:custom-form
)
2511 (widget-put widget
:custom-form custom-variable-default-form
))
2512 (let* ((buttons (widget-get widget
:buttons
))
2513 (children (widget-get widget
:children
))
2514 (form (widget-get widget
:custom-form
))
2515 (state (widget-get widget
:custom-state
))
2516 (symbol (widget-get widget
:value
))
2517 (tag (widget-get widget
:tag
))
2518 (type (custom-variable-type symbol
))
2519 (conv (widget-convert type
))
2520 (get (or (get symbol
'custom-get
) 'default-value
))
2521 (prefix (widget-get widget
:custom-prefix
))
2522 (last (widget-get widget
:custom-last
))
2523 (value (if (default-boundp symbol
)
2524 (funcall get symbol
)
2525 (widget-get conv
:value
))))
2526 ;; If the widget is new, the child determines whether it is hidden.
2528 ((custom-show type value
)
2529 (setq state
'unknown
))
2531 (setq state
'hidden
)))
2532 ;; If we don't know the state, see if we need to edit it in lisp form.
2533 (when (eq state
'unknown
)
2534 (unless (widget-apply conv
:match value
)
2535 ;; (widget-apply (widget-convert type) :match value)
2536 (setq form
'mismatch
)))
2537 ;; Now we can create the child widget.
2538 (cond ((eq custom-buffer-style
'tree
)
2539 (insert prefix
(if last
" `--- " " |--- "))
2540 (push (widget-create-child-and-convert
2541 widget
'custom-browse-variable-tag
)
2543 (insert " " tag
"\n")
2544 (widget-put widget
:buttons buttons
))
2546 ;; Indicate hidden value.
2547 (push (widget-create-child-and-convert
2550 :sample-face
'custom-variable-tag
2554 (push (widget-create-child-and-convert
2556 :help-echo
"Show the value of this option."
2558 :action
'custom-toggle-parent
2561 ((memq form
'(lisp mismatch
))
2562 ;; In lisp mode edit the saved value when possible.
2563 (let* ((value (cond ((get symbol
'saved-value
)
2564 (car (get symbol
'saved-value
)))
2565 ((get symbol
'standard-value
)
2566 (car (get symbol
'standard-value
)))
2567 ((default-boundp symbol
)
2568 (custom-quote (funcall get symbol
)))
2570 (custom-quote (widget-get conv
:value
))))))
2571 (insert (symbol-name symbol
) ": ")
2572 (push (widget-create-child-and-convert
2574 :help-echo
"Hide the value of this option."
2577 :action
'custom-toggle-parent
2581 (push (widget-create-child-and-convert
2583 :button-face
'custom-variable-button-face
2585 :tag
(symbol-name symbol
)
2591 (let* ((format (widget-get type
:format
))
2592 tag-format value-format
)
2593 (unless (string-match ":" format
)
2594 (error "Bad format"))
2595 (setq tag-format
(substring format
0 (match-end 0)))
2596 (setq value-format
(substring format
(match-end 0)))
2597 (push (widget-create-child-and-convert
2600 :action
'custom-tag-action
2601 :help-echo
"Change value of this option."
2602 :mouse-down-action
'custom-tag-mouse-down-action
2603 :button-face
'custom-variable-button
2604 :sample-face
'custom-variable-tag
2608 (push (widget-create-child-and-convert
2610 :help-echo
"Hide the value of this option."
2613 :action
'custom-toggle-parent
2616 (push (widget-create-child-and-convert
2618 :format value-format
2621 (unless (eq custom-buffer-style
'tree
)
2622 (unless (eq (preceding-char) ?
\n)
2623 (widget-insert "\n"))
2624 ;; Create the magic button.
2625 (let ((magic (widget-create-child-and-convert
2626 widget
'custom-magic nil
)))
2627 (widget-put widget
:custom-magic magic
)
2628 (push magic buttons
))
2629 (widget-put widget
:buttons buttons
)
2630 ;; Insert documentation.
2631 (widget-put widget
:documentation-indent
3)
2632 (widget-add-documentation-string-button
2633 widget
:visibility-widget
'custom-visibility
)
2635 ;; The comment field
2636 (unless (eq state
'hidden
)
2637 (let* ((comment (get symbol
'variable-comment
))
2639 (widget-create-child-and-convert
2640 widget
'custom-comment
2642 :value
(or comment
""))))
2643 (widget-put widget
:comment-widget comment-widget
)
2644 ;; Don't push it !!! Custom assumes that the first child is the
2646 (setq children
(append children
(list comment-widget
)))))
2647 ;; Update the rest of the properties properties.
2648 (widget-put widget
:custom-form form
)
2649 (widget-put widget
:children children
)
2650 ;; Now update the state.
2651 (if (eq state
'hidden
)
2652 (widget-put widget
:custom-state state
)
2653 (custom-variable-state-set widget
))
2655 (unless (eq state
'hidden
)
2656 (when (eq (widget-get widget
:custom-level
) 1)
2657 (custom-add-parent-links widget
))
2658 (custom-add-see-also widget
)))))
2660 (defun custom-tag-action (widget &rest args
)
2661 "Pass :action to first child of WIDGET's parent."
2662 (apply 'widget-apply
(car (widget-get (widget-get widget
:parent
) :children
))
2665 (defun custom-tag-mouse-down-action (widget &rest args
)
2666 "Pass :mouse-down-action to first child of WIDGET's parent."
2667 (apply 'widget-apply
(car (widget-get (widget-get widget
:parent
) :children
))
2668 :mouse-down-action args
))
2670 (defun custom-variable-state-set (widget)
2671 "Set the state of WIDGET."
2672 (let* ((symbol (widget-value widget
))
2673 (get (or (get symbol
'custom-get
) 'default-value
))
2674 (value (if (default-boundp symbol
)
2675 (funcall get symbol
)
2676 (widget-get widget
:value
)))
2677 (comment (get symbol
'variable-comment
))
2680 (state (cond ((progn (setq tmp
(get symbol
'customized-value
))
2682 (get symbol
'customized-variable-comment
))
2684 (if (condition-case nil
2685 (and (equal value
(eval (car tmp
)))
2686 (equal comment temp
))
2690 ((progn (setq tmp
(get symbol
'theme-value
))
2691 (setq temp
(get symbol
'saved-variable-comment
))
2693 (if (condition-case nil
2694 (and (equal comment temp
)
2697 (car (custom-variable-theme-value
2701 ((eq (caar tmp
) 'user
) 'saved
)
2702 ((eq (caar tmp
) 'changed
)
2703 (if (condition-case nil
2707 (car (get symbol
'standard-value
)))))
2709 ;; The value was originally set outside
2710 ;; custom, but it was set to the standard
2711 ;; value (probably an autoloaded defcustom).
2716 ((setq tmp
(get symbol
'standard-value
))
2717 (if (condition-case nil
2718 (and (equal value
(eval (car tmp
)))
2719 (equal comment nil
))
2724 (widget-put widget
:custom-state state
)))
2726 (defun custom-variable-standard-value (widget)
2727 (get (widget-value widget
) 'standard-value
))
2729 (defvar custom-variable-menu
2730 `(("Set for Current Session" custom-variable-set
2732 (eq (widget-get widget
:custom-state
) 'modified
)))
2733 ;; Note that in all the backquoted code in this file, we test
2734 ;; init-file-user rather than user-init-file. This is in case
2735 ;; cus-edit is loaded by something in site-start.el, because
2736 ;; user-init-file is not set at that stage.
2737 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00310.html
2738 ,@(when (or custom-file init-file-user
)
2739 '(("Save for Future Sessions" custom-variable-save
2741 (memq (widget-get widget
:custom-state
)
2742 '(modified set changed rogue
))))))
2743 ("Undo Edits" custom-redraw
2745 (and (default-boundp (widget-value widget
))
2746 (memq (widget-get widget
:custom-state
) '(modified changed
)))))
2747 ("Reset to Saved" custom-variable-reset-saved
2749 (and (or (get (widget-value widget
) 'saved-value
)
2750 (get (widget-value widget
) 'saved-variable-comment
))
2751 (memq (widget-get widget
:custom-state
)
2752 '(modified set changed rogue
)))))
2753 ,@(when (or custom-file init-file-user
)
2754 '(("Erase Customization" custom-variable-reset-standard
2756 (and (get (widget-value widget
) 'standard-value
)
2757 (memq (widget-get widget
:custom-state
)
2758 '(modified set changed saved rogue
)))))))
2759 ("Set to Backup Value" custom-variable-reset-backup
2761 (get (widget-value widget
) 'backup-value
)))
2762 ("---" ignore ignore
)
2763 ("Add Comment" custom-comment-show custom-comment-invisible-p
)
2764 ("---" ignore ignore
)
2765 ("Show Current Value" custom-variable-edit
2767 (eq (widget-get widget
:custom-form
) 'lisp
)))
2768 ("Show Saved Lisp Expression" custom-variable-edit-lisp
2770 (eq (widget-get widget
:custom-form
) 'edit
))))
2771 "Alist of actions for the `custom-variable' widget.
2772 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
2773 the menu entry, ACTION is the function to call on the widget when the
2774 menu is selected, and FILTER is a predicate which takes a `custom-variable'
2775 widget as an argument, and returns non-nil if ACTION is valid on that
2776 widget. If FILTER is nil, ACTION is always valid.")
2778 (defun custom-variable-action (widget &optional event
)
2779 "Show the menu for `custom-variable' WIDGET.
2780 Optional EVENT is the location for the menu."
2781 (if (eq (widget-get widget
:custom-state
) 'hidden
)
2782 (custom-toggle-hide widget
)
2783 (unless (eq (widget-get widget
:custom-state
) 'modified
)
2784 (custom-variable-state-set widget
))
2785 (custom-redraw-magic widget
)
2786 (let* ((completion-ignore-case t
)
2787 (answer (widget-choose (concat "Operation on "
2788 (custom-unlispify-tag-name
2789 (widget-get widget
:value
)))
2790 (custom-menu-filter custom-variable-menu
2794 (funcall answer widget
)))))
2796 (defun custom-variable-edit (widget)
2797 "Edit value of WIDGET."
2798 (widget-put widget
:custom-state
'unknown
)
2799 (widget-put widget
:custom-form
'edit
)
2800 (custom-redraw widget
))
2802 (defun custom-variable-edit-lisp (widget)
2803 "Edit the Lisp representation of the value of WIDGET."
2804 (widget-put widget
:custom-state
'unknown
)
2805 (widget-put widget
:custom-form
'lisp
)
2806 (custom-redraw widget
))
2808 (defun custom-variable-set (widget)
2809 "Set the current value for the variable being edited by WIDGET."
2810 (let* ((form (widget-get widget
:custom-form
))
2811 (state (widget-get widget
:custom-state
))
2812 (child (car (widget-get widget
:children
)))
2813 (symbol (widget-value widget
))
2814 (set (or (get symbol
'custom-set
) 'set-default
))
2815 (comment-widget (widget-get widget
:comment-widget
))
2816 (comment (widget-value comment-widget
))
2818 (cond ((eq state
'hidden
)
2819 (error "Cannot set hidden variable"))
2820 ((setq val
(widget-apply child
:validate
))
2821 (goto-char (widget-get val
:from
))
2822 (error "%s" (widget-get val
:error
)))
2823 ((memq form
'(lisp mismatch
))
2824 (when (equal comment
"")
2826 ;; Make the comment invisible by hand if it's empty
2827 (custom-comment-hide comment-widget
))
2828 (custom-variable-backup-value widget
)
2829 (custom-push-theme 'theme-value symbol
'user
2830 'set
(custom-quote (widget-value child
)))
2831 (funcall set symbol
(eval (setq val
(widget-value child
))))
2832 (put symbol
'customized-value
(list val
))
2833 (put symbol
'variable-comment comment
)
2834 (put symbol
'customized-variable-comment comment
))
2836 (when (equal comment
"")
2838 ;; Make the comment invisible by hand if it's empty
2839 (custom-comment-hide comment-widget
))
2840 (custom-variable-backup-value widget
)
2841 (custom-push-theme 'theme-value symbol
'user
2842 'set
(custom-quote (widget-value child
)))
2843 (funcall set symbol
(setq val
(widget-value child
)))
2844 (put symbol
'customized-value
(list (custom-quote val
)))
2845 (put symbol
'variable-comment comment
)
2846 (put symbol
'customized-variable-comment comment
)))
2847 (custom-variable-state-set widget
)
2848 (custom-redraw-magic widget
)))
2850 (defun custom-variable-mark-to-save (widget)
2851 "Set value and mark for saving the variable edited by WIDGET."
2852 (let* ((form (widget-get widget
:custom-form
))
2853 (state (widget-get widget
:custom-state
))
2854 (child (car (widget-get widget
:children
)))
2855 (symbol (widget-value widget
))
2856 (set (or (get symbol
'custom-set
) 'set-default
))
2857 (comment-widget (widget-get widget
:comment-widget
))
2858 (comment (widget-value comment-widget
))
2860 (cond ((eq state
'hidden
)
2861 (error "Cannot set hidden variable"))
2862 ((setq val
(widget-apply child
:validate
))
2863 (goto-char (widget-get val
:from
))
2864 (error "Saving %s: %s" symbol
(widget-get val
:error
)))
2865 ((memq form
'(lisp mismatch
))
2866 (when (equal comment
"")
2868 ;; Make the comment invisible by hand if it's empty
2869 (custom-comment-hide comment-widget
))
2870 (put symbol
'saved-value
(list (widget-value child
)))
2871 (custom-push-theme 'theme-value symbol
'user
2872 'set
(custom-quote (widget-value child
)))
2873 (funcall set symbol
(eval (widget-value child
)))
2874 (put symbol
'variable-comment comment
)
2875 (put symbol
'saved-variable-comment comment
))
2877 (when (equal comment
"")
2879 ;; Make the comment invisible by hand if it's empty
2880 (custom-comment-hide comment-widget
))
2881 (put symbol
'saved-value
2882 (list (custom-quote (widget-value child
))))
2883 (custom-push-theme 'theme-value symbol
'user
2884 'set
(custom-quote (widget-value child
)))
2885 (funcall set symbol
(widget-value child
))
2886 (put symbol
'variable-comment comment
)
2887 (put symbol
'saved-variable-comment comment
)))
2888 (put symbol
'customized-value nil
)
2889 (put symbol
'customized-variable-comment nil
)))
2891 (defsubst custom-variable-state-set-and-redraw
(widget)
2892 "Set state of variable widget WIDGET and redraw with current settings."
2893 (custom-variable-state-set widget
)
2894 (custom-redraw-magic widget
))
2896 (defun custom-variable-save (widget)
2897 "Save value of variable edited by widget WIDGET."
2898 (custom-variable-mark-to-save widget
)
2900 (custom-variable-state-set-and-redraw widget
))
2902 (defun custom-variable-reset-saved (widget)
2903 "Restore the saved value for the variable being edited by WIDGET.
2904 This also updates the buffer to show that value.
2905 The value that was current before this operation
2906 becomes the backup value, so you can get it again."
2907 (let* ((symbol (widget-value widget
))
2908 (set (or (get symbol
'custom-set
) 'set-default
))
2909 (value (get symbol
'saved-value
))
2910 (comment (get symbol
'saved-variable-comment
)))
2911 (cond ((or value comment
)
2912 (put symbol
'variable-comment comment
)
2913 (custom-variable-backup-value widget
)
2914 (custom-push-theme 'theme-value symbol
'user
'set
(car-safe value
))
2916 (funcall set symbol
(eval (car value
)))
2919 (error "No saved value for %s" symbol
)))
2920 (put symbol
'customized-value nil
)
2921 (put symbol
'customized-variable-comment nil
)
2922 (widget-put widget
:custom-state
'unknown
)
2923 ;; This call will possibly make the comment invisible
2924 (custom-redraw widget
)))
2926 (defun custom-variable-mark-to-reset-standard (widget)
2927 "Mark to restore standard setting for the variable edited by widget WIDGET.
2928 If `custom-reset-standard-variables-list' is nil, save, reset and
2929 redraw the widget immediately."
2930 (let* ((symbol (widget-value widget
)))
2931 (if (get symbol
'standard-value
)
2932 (custom-variable-backup-value widget
)
2933 (error "No standard setting known for %S" symbol
))
2934 (put symbol
'variable-comment nil
)
2935 (put symbol
'customized-value nil
)
2936 (put symbol
'customized-variable-comment nil
)
2937 (custom-push-theme 'theme-value symbol
'user
'reset
)
2938 (custom-theme-recalc-variable symbol
)
2939 (if (and custom-reset-standard-variables-list
2940 (or (get symbol
'saved-value
) (get symbol
'saved-variable-comment
)))
2942 (put symbol
'saved-value nil
)
2943 (put symbol
'saved-variable-comment nil
)
2944 ;; Append this to `custom-reset-standard-variables-list' to
2945 ;; have `custom-reset-standard-save-and-update' save setting
2946 ;; to the file, update the widget's state, and redraw it.
2947 (setq custom-reset-standard-variables-list
2948 (cons widget custom-reset-standard-variables-list
)))
2949 (when (or (get symbol
'saved-value
) (get symbol
'saved-variable-comment
))
2950 (put symbol
'saved-value nil
)
2951 (put symbol
'saved-variable-comment nil
)
2953 (widget-put widget
:custom-state
'unknown
)
2954 ;; This call will possibly make the comment invisible
2955 (custom-redraw widget
))))
2957 (defun custom-variable-reset-standard (widget)
2958 "Restore standard setting for the variable edited by WIDGET.
2959 This operation eliminates any saved setting for the variable,
2960 restoring it to the state of a variable that has never been customized.
2961 The value that was current before this operation
2962 becomes the backup value, so you can get it again."
2963 (let (custom-reset-standard-variables-list)
2964 (custom-variable-mark-to-reset-standard widget
)))
2966 (defun custom-variable-backup-value (widget)
2967 "Back up the current value for WIDGET's variable.
2968 The backup value is kept in the car of the `backup-value' property."
2969 (let* ((symbol (widget-value widget
))
2970 (get (or (get symbol
'custom-get
) 'default-value
))
2971 (type (custom-variable-type symbol
))
2972 (conv (widget-convert type
))
2973 (value (if (default-boundp symbol
)
2974 (funcall get symbol
)
2975 (widget-get conv
:value
))))
2976 (put symbol
'backup-value
(list value
))))
2978 (defun custom-variable-reset-backup (widget)
2979 "Restore the backup value for the variable being edited by WIDGET.
2980 The value that was current before this operation
2981 becomes the backup value, so you can use this operation repeatedly
2982 to switch between two values."
2983 (let* ((symbol (widget-value widget
))
2984 (set (or (get symbol
'custom-set
) 'set-default
))
2985 (value (get symbol
'backup-value
))
2986 (comment-widget (widget-get widget
:comment-widget
))
2987 (comment (widget-value comment-widget
)))
2990 (custom-variable-backup-value widget
)
2991 (custom-push-theme 'theme-value symbol
'user
'set value
)
2993 (funcall set symbol
(car value
))
2995 (error "No backup value for %s" symbol
))
2996 (put symbol
'customized-value
(list (car value
)))
2997 (put symbol
'variable-comment comment
)
2998 (put symbol
'customized-variable-comment comment
)
2999 (custom-variable-state-set widget
)
3000 ;; This call will possibly make the comment invisible
3001 (custom-redraw widget
)))
3003 ;;; The `custom-visibility' Widget
3005 (define-widget 'custom-visibility
'visibility
3006 "Show or hide a documentation string."
3007 :button-face
'custom-visibility
3008 :pressed-face
'custom-visibility
3009 :mouse-face
'highlight
3010 :pressed-face
'highlight
)
3012 (defface custom-visibility
3013 '((t :height
0.8 :inherit link
))
3014 "Face for the `custom-visibility' widget."
3016 :group
'custom-faces
)
3018 ;;; The `custom-face-edit' Widget.
3020 (define-widget 'custom-face-edit
'checklist
3021 "Edit face attributes."
3025 :button-args
'(:help-echo
"Control whether this attribute has any effect.")
3026 :value-to-internal
'custom-face-edit-fix-value
3027 :match
(lambda (widget value
)
3028 (widget-checklist-match widget
3029 (custom-face-edit-fix-value widget value
)))
3030 :convert-widget
'custom-face-edit-convert-widget
3031 :args
(mapcar (lambda (att)
3034 :sibling-args
(widget-get (nth 1 att
) :sibling-args
)
3035 (list 'const
:format
"" :value
(nth 0 att
))
3037 custom-face-attributes
))
3039 (defun custom-face-edit-fix-value (widget value
)
3040 "Ignoring WIDGET, convert :bold and :italic in VALUE to new form.
3041 Also change :reverse-video to :inverse-video."
3045 (let ((key (car value
))
3046 (val (car (cdr value
))))
3047 (cond ((eq key
:italic
)
3048 (push :slant result
)
3049 (push (if val
'italic
'normal
) result
))
3051 (push :weight result
)
3052 (push (if val
'bold
'normal
) result
))
3053 ((eq key
:reverse-video
)
3054 (push :inverse-video result
)
3058 (push val result
))))
3059 (setq value
(cdr (cdr value
))))
3060 (setq result
(nreverse result
))
3064 (defun custom-face-edit-convert-widget (widget)
3065 "Convert :args as widget types in WIDGET."
3068 :args
(mapcar (lambda (arg)
3070 :deactivate
'custom-face-edit-deactivate
3071 :activate
'custom-face-edit-activate
3072 :delete
'custom-face-edit-delete
))
3073 (widget-get widget
:args
)))
3076 (defun custom-face-edit-deactivate (widget)
3077 "Make face widget WIDGET inactive for user modifications."
3078 (unless (widget-get widget
:inactive
)
3079 (let ((tag (custom-face-edit-attribute-tag widget
))
3080 (from (copy-marker (widget-get widget
:from
)))
3081 (value (widget-value widget
))
3082 (inhibit-read-only t
)
3083 (inhibit-modification-hooks t
))
3086 (widget-default-delete widget
)
3087 (insert tag
": *\n")
3088 (widget-put widget
:inactive
3089 (cons value
(cons from
(- (point) from
))))))))
3091 (defun custom-face-edit-activate (widget)
3092 "Make face widget WIDGET active for user modifications."
3093 (let ((inactive (widget-get widget
:inactive
))
3094 (inhibit-read-only t
)
3095 (inhibit-modification-hooks t
))
3096 (when (consp inactive
)
3098 (goto-char (car (cdr inactive
)))
3099 (delete-region (point) (+ (point) (cdr (cdr inactive
))))
3100 (widget-put widget
:inactive nil
)
3101 (widget-apply widget
:create
)
3102 (widget-value-set widget
(car inactive
))
3105 (defun custom-face-edit-delete (widget)
3106 "Remove WIDGET from the buffer."
3107 (let ((inactive (widget-get widget
:inactive
))
3108 (inhibit-read-only t
)
3109 (inhibit-modification-hooks t
))
3111 ;; Widget is alive, we don't have to do anything special
3112 (widget-default-delete widget
)
3113 ;; WIDGET is already deleted because we did so to inactivate it;
3114 ;; now just get rid of the label we put in its place.
3115 (delete-region (car (cdr inactive
))
3116 (+ (car (cdr inactive
)) (cdr (cdr inactive
))))
3117 (widget-put widget
:inactive nil
))))
3120 (defun custom-face-edit-attribute-tag (widget)
3121 "Return the first :tag property in WIDGET or one of its children."
3122 (let ((tag (widget-get widget
:tag
)))
3123 (or (and (not (equal tag
"")) tag
)
3124 (let ((children (widget-get widget
:children
)))
3125 (while (and (null tag
) children
)
3126 (setq tag
(custom-face-edit-attribute-tag (pop children
))))
3129 ;;; The `custom-display' Widget.
3131 (define-widget 'custom-display
'menu-choice
3132 "Select a display type."
3135 :help-echo
"Specify frames where the face attributes should be used."
3136 :args
'((const :tag
"all" t
)
3137 (const :tag
"defaults" default
)
3141 :args
((group :sibling-args
(:help-echo
"\
3142 Only match the specified window systems.")
3143 (const :format
"Type: "
3145 (checklist :inline t
3148 :sibling-args
(:help-echo
"\
3149 The X11 Window System.")
3151 (const :format
"PM "
3152 :sibling-args
(:help-echo
"\
3153 OS/2 Presentation Manager.")
3155 (const :format
"W32 "
3156 :sibling-args
(:help-echo
"\
3159 (const :format
"NS "
3160 :sibling-args
(:help-echo
"\
3161 GNUstep or Macintosh OS Cocoa interface.")
3163 (const :format
"DOS "
3164 :sibling-args
(:help-echo
"\
3167 (const :format
"TTY%n"
3168 :sibling-args
(:help-echo
"\
3169 Plain text terminals.")
3171 (group :sibling-args
(:help-echo
"\
3172 Only match the frames with the specified color support.")
3173 (const :format
"Class: "
3175 (checklist :inline t
3177 (const :format
"Color "
3178 :sibling-args
(:help-echo
"\
3179 Match color frames.")
3181 (const :format
"Grayscale "
3182 :sibling-args
(:help-echo
"\
3183 Match grayscale frames.")
3185 (const :format
"Monochrome%n"
3186 :sibling-args
(:help-echo
"\
3187 Match frames with no color support.")
3189 (group :sibling-args
(:help-echo
"\
3190 The minimum number of colors the frame should support.")
3191 (const :format
"" min-colors
)
3192 (integer :tag
"Minimum number of colors" ))
3193 (group :sibling-args
(:help-echo
"\
3194 Only match frames with the specified intensity.")
3196 Background brightness: "
3198 (checklist :inline t
3200 (const :format
"Light "
3201 :sibling-args
(:help-echo
"\
3202 Match frames with light backgrounds.")
3204 (const :format
"Dark\n"
3205 :sibling-args
(:help-echo
"\
3206 Match frames with dark backgrounds.")
3208 (group :sibling-args
(:help-echo
"\
3209 Only match frames that support the specified face attributes.")
3210 (const :format
"Supports attributes:" supports
)
3211 (custom-face-edit :inline t
:format
"%n%v"))))))
3213 ;;; The `custom-face' Widget.
3215 (defface custom-face-tag
3216 `((t :inherit custom-variable-tag
))
3217 "Face used for face tags."
3218 :group
'custom-faces
)
3219 ;; backward-compatibility alias
3220 (put 'custom-face-tag-face
'face-alias
'custom-face-tag
)
3222 (defcustom custom-face-default-form
'selected
3223 "Default form of displaying face definition."
3224 :type
'(choice (const all
)
3227 :group
'custom-buffer
3230 (define-widget 'custom-face
'custom
3232 :sample-face
'custom-face-tag
3233 :help-echo
"Set or reset this face."
3234 :documentation-property
#'face-doc-string
3235 :value-create
'custom-face-value-create
3236 :action
'custom-face-action
3237 :custom-category
'face
3238 :custom-form nil
; defaults to value of `custom-face-default-form'
3239 :custom-set
'custom-face-set
3240 :custom-mark-to-save
'custom-face-mark-to-save
3241 :custom-reset-current
'custom-redraw
3242 :custom-reset-saved
'custom-face-reset-saved
3243 :custom-reset-standard
'custom-face-reset-standard
3244 :custom-mark-to-reset-standard
'custom-face-mark-to-reset-standard
3245 :custom-standard-value
'custom-face-standard-value
3246 :custom-state-set-and-redraw
'custom-face-state-set-and-redraw
3247 :custom-menu
'custom-face-menu-create
)
3249 (define-widget 'custom-face-all
'editable-list
3250 "An editable list of display specifications and attributes."
3251 :entry-format
"%i %d %v"
3252 :insert-button-args
'(:help-echo
"Insert new display specification here.")
3253 :append-button-args
'(:help-echo
"Append new display specification here.")
3254 :delete-button-args
'(:help-echo
"Delete this display specification.")
3255 :args
'((group :format
"%v" custom-display custom-face-edit
)))
3257 (defconst custom-face-all
(widget-convert 'custom-face-all
)
3258 "Converted version of the `custom-face-all' widget.")
3260 (define-widget 'custom-display-unselected
'item
3261 "A display specification that doesn't match the selected display."
3262 :match
'custom-display-unselected-match
)
3264 (defun custom-display-unselected-match (widget value
)
3265 "Non-nil if VALUE is an unselected display specification."
3266 (not (face-spec-set-match-display value
(selected-frame))))
3268 (define-widget 'custom-face-selected
'group
3269 "Edit the attributes of the selected display in a face specification."
3270 :args
'((choice :inline t
3271 (group :tag
"With Defaults" :inline t
3272 (group (const :tag
"" default
)
3273 (custom-face-edit :tag
" Default\n Attributes"))
3276 (group custom-display-unselected sexp
))
3277 (group (sexp :format
"")
3278 (custom-face-edit :tag
" Overriding\n Attributes"))
3282 (group :tag
"No Defaults" :inline t
3285 (group custom-display-unselected sexp
))
3286 (group (sexp :format
"")
3287 (custom-face-edit :tag
"\n Attributes"))
3294 (defconst custom-face-selected
(widget-convert 'custom-face-selected
)
3295 "Converted version of the `custom-face-selected' widget.")
3297 (defun custom-filter-face-spec (spec filter-index
&optional default-filter
)
3298 "Return a canonicalized version of SPEC using.
3299 FILTER-INDEX is the index in the entry for each attribute in
3300 `custom-face-attributes' at which the appropriate filter function can be
3301 found, and DEFAULT-FILTER is the filter to apply for attributes that
3303 (mapcar (lambda (entry)
3304 ;; Filter a single face-spec entry
3305 (let ((tests (car entry
))
3307 ;; Handle both old- and new-style attribute syntax
3308 (if (listp (car (cdr entry
)))
3311 (filtered-attrs nil
))
3312 ;; Filter each face attribute
3313 (while unfiltered-attrs
3314 (let* ((attr (pop unfiltered-attrs
))
3315 (pre-filtered-value (pop unfiltered-attrs
))
3317 (or (nth filter-index
(assq attr custom-face-attributes
))
3321 (funcall filter pre-filtered-value
)
3322 pre-filtered-value
)))
3323 (push filtered-value filtered-attrs
)
3324 (push attr filtered-attrs
)))
3326 (list tests filtered-attrs
)))
3329 (defun custom-pre-filter-face-spec (spec)
3330 "Return SPEC changed as necessary for editing by the face customization widget.
3331 SPEC must be a full face spec."
3332 (custom-filter-face-spec spec
2))
3334 (defun custom-post-filter-face-spec (spec)
3335 "Return the customized SPEC in a form suitable for setting the face."
3336 (custom-filter-face-spec spec
3))
3338 (defun custom-face-value-create (widget)
3339 "Create a list of the display specifications for WIDGET."
3340 (let ((buttons (widget-get widget
:buttons
))
3342 (symbol (widget-get widget
:value
))
3343 (tag (widget-get widget
:tag
))
3344 (state (widget-get widget
:custom-state
))
3346 (is-last (widget-get widget
:custom-last
))
3347 (prefix (widget-get widget
:custom-prefix
)))
3349 (setq tag
(prin1-to-string symbol
)))
3350 (cond ((eq custom-buffer-style
'tree
)
3351 (insert prefix
(if is-last
" `--- " " |--- "))
3352 (push (widget-create-child-and-convert
3353 widget
'custom-browse-face-tag
)
3355 (insert " " tag
"\n")
3356 (widget-put widget
:buttons buttons
))
3360 (widget-specify-sample widget begin
(point))
3361 (if (eq custom-buffer-style
'face
)
3363 (if (string-match "face\\'" tag
)
3365 (insert " face: ")))
3367 (push (widget-create-child-and-convert widget
'item
3374 (push (widget-create-child-and-convert
3376 :help-echo
"Hide or show this face."
3379 :action
'custom-toggle-parent
3380 (not (eq state
'hidden
)))
3384 (let ((magic (widget-create-child-and-convert
3385 widget
'custom-magic nil
)))
3386 (widget-put widget
:custom-magic magic
)
3387 (push magic buttons
))
3389 (widget-put widget
:buttons buttons
)
3390 ;; Insert documentation.
3391 (widget-put widget
:documentation-indent
3)
3392 (widget-add-documentation-string-button
3393 widget
:visibility-widget
'custom-visibility
)
3395 ;; The comment field
3396 (unless (eq state
'hidden
)
3397 (let* ((comment (get symbol
'face-comment
))
3399 (widget-create-child-and-convert
3400 widget
'custom-comment
3402 :value
(or comment
""))))
3403 (widget-put widget
:comment-widget comment-widget
)
3404 (push comment-widget children
)))
3406 (unless (eq state
'hidden
)
3407 (when (eq (widget-get widget
:custom-level
) 1)
3408 (custom-add-parent-links widget
))
3409 (custom-add-see-also widget
))
3411 (unless (eq (preceding-char) ?
\n)
3413 (unless (eq state
'hidden
)
3414 (message "Creating face editor...")
3415 (custom-load-widget widget
)
3416 (unless (widget-get widget
:custom-form
)
3417 (widget-put widget
:custom-form custom-face-default-form
))
3418 (let* ((symbol (widget-value widget
))
3419 (spec (or (get symbol
'customized-face
)
3420 (get symbol
'saved-face
)
3421 (get symbol
'face-defface-spec
)
3422 ;; Attempt to construct it.
3423 (list (list t
(custom-face-attributes-get
3424 symbol
(selected-frame))))))
3425 (form (widget-get widget
:custom-form
))
3426 (indent (widget-get widget
:indent
))
3428 ;; If the user has changed this face in some other way,
3429 ;; edit it as the user has specified it.
3430 (if (not (face-spec-match-p symbol spec
(selected-frame)))
3431 (setq spec
(list (list t
(face-attr-construct symbol
(selected-frame))))))
3432 (setq spec
(custom-pre-filter-face-spec spec
))
3433 (setq edit
(widget-create-child-and-convert
3435 (cond ((and (eq form
'selected
)
3436 (widget-apply custom-face-selected
3438 (when indent
(insert-char ?\ indent
))
3439 'custom-face-selected
)
3440 ((and (not (eq form
'lisp
))
3441 (widget-apply custom-face-all
3445 (when indent
(insert-char ?\ indent
))
3448 (custom-face-state-set widget
)
3449 (push edit children
)
3450 (widget-put widget
:children children
))
3451 (message "Creating face editor...done"))))))
3453 (defvar custom-face-menu
3454 `(("Set for Current Session" custom-face-set
)
3455 ,@(when (or custom-file init-file-user
)
3456 '(("Save for Future Sessions" custom-face-save
)))
3457 ("Undo Edits" custom-redraw
3459 (memq (widget-get widget
:custom-state
) '(modified changed
))))
3460 ("Reset to Saved" custom-face-reset-saved
3462 (or (get (widget-value widget
) 'saved-face
)
3463 (get (widget-value widget
) 'saved-face-comment
))))
3464 ,@(when (or custom-file init-file-user
)
3465 '(("Erase Customization" custom-face-reset-standard
3467 (get (widget-value widget
) 'face-defface-spec
)))))
3468 ("---" ignore ignore
)
3469 ("Add Comment" custom-comment-show custom-comment-invisible-p
)
3470 ("---" ignore ignore
)
3471 ("For Current Display" custom-face-edit-selected
3473 (not (eq (widget-get widget
:custom-form
) 'selected
))))
3474 ("For All Kinds of Displays" custom-face-edit-all
3476 (not (eq (widget-get widget
:custom-form
) 'all
))))
3477 ("Show Lisp Expression" custom-face-edit-lisp
3479 (not (eq (widget-get widget
:custom-form
) 'lisp
)))))
3480 "Alist of actions for the `custom-face' widget.
3481 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
3482 the menu entry, ACTION is the function to call on the widget when the
3483 menu is selected, and FILTER is a predicate which takes a `custom-face'
3484 widget as an argument, and returns non-nil if ACTION is valid on that
3485 widget. If FILTER is nil, ACTION is always valid.")
3487 (defun custom-face-edit-selected (widget)
3488 "Edit selected attributes of the value of WIDGET."
3489 (widget-put widget
:custom-state
'unknown
)
3490 (widget-put widget
:custom-form
'selected
)
3491 (custom-redraw widget
))
3493 (defun custom-face-edit-all (widget)
3494 "Edit all attributes of the value of WIDGET."
3495 (widget-put widget
:custom-state
'unknown
)
3496 (widget-put widget
:custom-form
'all
)
3497 (custom-redraw widget
))
3499 (defun custom-face-edit-lisp (widget)
3500 "Edit the Lisp representation of the value of WIDGET."
3501 (widget-put widget
:custom-state
'unknown
)
3502 (widget-put widget
:custom-form
'lisp
)
3503 (custom-redraw widget
))
3505 (defun custom-face-state-set (widget)
3506 "Set the state of WIDGET."
3507 (let* ((symbol (widget-value widget
))
3508 (comment (get symbol
'face-comment
))
3512 (setq tmp
(get symbol
'customized-face
))
3513 (setq temp
(get symbol
'customized-face-comment
))
3515 (if (equal temp comment
)
3519 (setq tmp
(get symbol
'saved-face
))
3520 (setq temp
(get symbol
'saved-face-comment
))
3522 (if (equal temp comment
)
3524 ((eq 'user
(caar (get symbol
'theme-face
)))
3526 ((eq 'changed
(caar (get symbol
'theme-face
)))
3530 ((get symbol
'face-defface-spec
)
3531 (if (equal comment nil
)
3536 ;; If the user called set-face-attribute to change the default
3537 ;; for new frames, this face is "set outside of Customize".
3538 (if (and (not (eq state
'rogue
))
3539 (get symbol
'face-modified
))
3540 (setq state
'changed
))
3541 (widget-put widget
:custom-state state
)))
3543 (defun custom-face-action (widget &optional event
)
3544 "Show the menu for `custom-face' WIDGET.
3545 Optional EVENT is the location for the menu."
3546 (if (eq (widget-get widget
:custom-state
) 'hidden
)
3547 (custom-toggle-hide widget
)
3548 (let* ((completion-ignore-case t
)
3549 (symbol (widget-get widget
:value
))
3550 (answer (widget-choose (concat "Operation on "
3551 (custom-unlispify-tag-name symbol
))
3552 (custom-menu-filter custom-face-menu
3556 (funcall answer widget
)))))
3558 (defun custom-face-set (widget)
3559 "Make the face attributes in WIDGET take effect."
3560 (let* ((symbol (widget-value widget
))
3561 (child (car (widget-get widget
:children
)))
3562 (value (custom-post-filter-face-spec (widget-value child
)))
3563 (comment-widget (widget-get widget
:comment-widget
))
3564 (comment (widget-value comment-widget
)))
3565 (when (equal comment
"")
3567 ;; Make the comment invisible by hand if it's empty
3568 (custom-comment-hide comment-widget
))
3569 (put symbol
'customized-face value
)
3570 (custom-push-theme 'theme-face symbol
'user
'set value
)
3571 (if (face-spec-choose value
)
3572 (face-spec-set symbol value t
)
3573 ;; face-set-spec ignores empty attribute lists, so just give it
3574 ;; something harmless instead.
3575 (face-spec-set symbol
'((t :foreground unspecified
)) t
))
3576 (put symbol
'customized-face-comment comment
)
3577 (put symbol
'face-comment comment
)
3578 (custom-face-state-set widget
)
3579 (custom-redraw-magic widget
)))
3581 (defun custom-face-mark-to-save (widget)
3582 "Mark for saving the face edited by WIDGET."
3583 (let* ((symbol (widget-value widget
))
3584 (child (car (widget-get widget
:children
)))
3585 (value (custom-post-filter-face-spec (widget-value child
)))
3586 (comment-widget (widget-get widget
:comment-widget
))
3587 (comment (widget-value comment-widget
)))
3588 (when (equal comment
"")
3590 ;; Make the comment invisible by hand if it's empty
3591 (custom-comment-hide comment-widget
))
3592 (custom-push-theme 'theme-face symbol
'user
'set value
)
3593 (if (face-spec-choose value
)
3594 (face-spec-set symbol value t
)
3595 ;; face-set-spec ignores empty attribute lists, so just give it
3596 ;; something harmless instead.
3597 (face-spec-set symbol
'((t :foreground unspecified
)) t
))
3598 (unless (eq (widget-get widget
:custom-state
) 'standard
)
3599 (put symbol
'saved-face value
))
3600 (put symbol
'customized-face nil
)
3601 (put symbol
'face-comment comment
)
3602 (put symbol
'customized-face-comment nil
)
3603 (put symbol
'saved-face-comment comment
)))
3605 (defsubst custom-face-state-set-and-redraw
(widget)
3606 "Set state of face widget WIDGET and redraw with current settings."
3607 (custom-face-state-set widget
)
3608 (custom-redraw-magic widget
))
3610 (defun custom-face-save (widget)
3611 "Save the face edited by WIDGET."
3612 (custom-face-mark-to-save widget
)
3614 (custom-face-state-set-and-redraw widget
))
3616 ;; For backward compatibility.
3617 (define-obsolete-function-alias 'custom-face-save-command
'custom-face-save
3620 (defun custom-face-reset-saved (widget)
3621 "Restore WIDGET to the face's default attributes."
3622 (let* ((symbol (widget-value widget
))
3623 (child (car (widget-get widget
:children
)))
3624 (value (get symbol
'saved-face
))
3625 (comment (get symbol
'saved-face-comment
))
3626 (comment-widget (widget-get widget
:comment-widget
)))
3627 (unless (or value comment
)
3628 (error "No saved value for this face"))
3629 (put symbol
'customized-face nil
)
3630 (put symbol
'customized-face-comment nil
)
3631 (custom-push-theme 'theme-face symbol
'user
'set value
)
3632 (face-spec-set symbol value t
)
3633 (put symbol
'face-comment comment
)
3634 (widget-value-set child value
)
3635 ;; This call manages the comment visibility
3636 (widget-value-set comment-widget
(or comment
""))
3637 (custom-face-state-set widget
)
3638 (custom-redraw-magic widget
)))
3640 (defun custom-face-standard-value (widget)
3641 (get (widget-value widget
) 'face-defface-spec
))
3643 (defun custom-face-mark-to-reset-standard (widget)
3644 "Restore widget WIDGET to the face's standard attribute values.
3645 If `custom-reset-standard-faces-list' is nil, save, reset and
3646 redraw the widget immediately."
3647 (let* ((symbol (widget-value widget
))
3648 (child (car (widget-get widget
:children
)))
3649 (value (get symbol
'face-defface-spec
))
3650 (comment-widget (widget-get widget
:comment-widget
)))
3652 (error "No standard setting for this face"))
3653 (put symbol
'customized-face nil
)
3654 (put symbol
'customized-face-comment nil
)
3655 (custom-push-theme 'theme-face symbol
'user
'reset
)
3656 (face-spec-set symbol value t
)
3657 (custom-theme-recalc-face symbol
)
3658 (if (and custom-reset-standard-faces-list
3659 (or (get symbol
'saved-face
) (get symbol
'saved-face-comment
)))
3662 (put symbol
'saved-face nil
)
3663 (put symbol
'saved-face-comment nil
)
3664 ;; Append this to `custom-reset-standard-faces-list' and have
3665 ;; `custom-reset-standard-save-and-update' save setting to the
3666 ;; file, update the widget's state, and redraw it.
3667 (setq custom-reset-standard-faces-list
3668 (cons widget custom-reset-standard-faces-list
)))
3669 (when (or (get symbol
'saved-face
) (get symbol
'saved-face-comment
))
3670 (put symbol
'saved-face nil
)
3671 (put symbol
'saved-face-comment nil
)
3673 (put symbol
'face-comment nil
)
3674 (widget-value-set child
3675 (custom-pre-filter-face-spec
3676 (list (list t
(custom-face-attributes-get
3678 ;; This call manages the comment visibility
3679 (widget-value-set comment-widget
"")
3680 (custom-face-state-set widget
)
3681 (custom-redraw-magic widget
))))
3683 (defun custom-face-reset-standard (widget)
3684 "Restore WIDGET to the face's standard attribute values.
3685 This operation eliminates any saved attributes for the face,
3686 restoring it to the state of a face that has never been customized."
3687 (let (custom-reset-standard-faces-list)
3688 (custom-face-mark-to-reset-standard widget
)))
3690 ;;; The `face' Widget.
3692 (defvar widget-face-prompt-value-history nil
3693 "History of input to `widget-face-prompt-value'.")
3695 (define-widget 'face
'symbol
3696 "A Lisp face name (with sample)."
3697 :format
"%{%t%}: (%{sample%}) %v"
3700 :sample-face-get
'widget-face-sample-face-get
3701 :notify
'widget-face-notify
3702 :match
(lambda (widget value
) (facep value
))
3703 :complete-function
(lambda ()
3705 (lisp-complete-symbol 'facep
))
3706 :prompt-match
'facep
3707 :prompt-history
'widget-face-prompt-value-history
3708 :validate
(lambda (widget)
3709 (unless (facep (widget-value widget
))
3711 :error
(format "Invalid face: %S"
3712 (widget-value widget
)))
3715 (defun widget-face-sample-face-get (widget)
3716 (let ((value (widget-value widget
)))
3721 (defun widget-face-notify (widget child
&optional event
)
3722 "Update the sample, and notify the parent."
3723 (overlay-put (widget-get widget
:sample-overlay
)
3724 'face
(widget-apply widget
:sample-face-get
))
3725 (widget-default-notify widget child event
))
3728 ;;; The `hook' Widget.
3730 (define-widget 'hook
'list
3731 "An Emacs Lisp hook."
3732 :value-to-internal
(lambda (widget value
)
3733 (if (and value
(symbolp value
))
3736 :match
(lambda (widget value
)
3738 (widget-group-match widget value
)))
3739 ;; Avoid adding undefined functions to the hook, especially for
3740 ;; things like `find-file-hook' or even more basic ones, to avoid
3742 :set
(lambda (symbol value
)
3745 (add-hook symbol elt
))))
3746 :convert-widget
'custom-hook-convert-widget
3749 (defun custom-hook-convert-widget (widget)
3750 ;; Handle `:options'.
3751 (let* ((options (widget-get widget
:options
))
3752 (other `(editable-list :inline t
3753 :entry-format
"%i %d%v"
3754 (function :format
" %v")))
3756 (list `(checklist :inline t
3757 ,@(mapcar (lambda (entry)
3758 `(function-item ,entry
))
3762 (widget-put widget
:args args
)
3765 ;;; The `custom-group-link' Widget.
3767 (define-widget 'custom-group-link
'link
3768 "Show parent in other window when activated."
3769 :button-face
'custom-link
3770 :mouse-face
'highlight
3771 :pressed-face
'highlight
3772 :help-echo
"Create customization buffer for this group."
3773 :keymap custom-mode-link-map
3774 :follow-link
'mouse-face
3775 :action
'custom-group-link-action
)
3777 (defun custom-group-link-action (widget &rest ignore
)
3778 (customize-group (widget-value widget
)))
3780 ;;; The `custom-group' Widget.
3782 (defcustom custom-group-tag-faces nil
3783 ;; In XEmacs, this ought to play games with font size.
3784 ;; Fixme: make it do so in Emacs.
3785 "Face used for group tags.
3786 The first member is used for level 1 groups, the second for level 2,
3787 and so forth. The remaining group tags are shown with `custom-group-tag'."
3788 :type
'(repeat face
)
3789 :group
'custom-faces
)
3791 (defface custom-group-tag-1
3794 (:foreground
"pink" :weight bold
:height
1.2 :inherit variable-pitch
))
3795 (((min-colors 88) (class color
)
3797 (:foreground
"red1" :weight bold
:height
1.2 :inherit variable-pitch
))
3800 (:foreground
"red" :weight bold
:height
1.2 :inherit variable-pitch
))
3802 "Face used for group tags."
3803 :group
'custom-faces
)
3804 ;; backward-compatibility alias
3805 (put 'custom-group-tag-face-1
'face-alias
'custom-group-tag-1
)
3807 (defface custom-group-tag
3810 (:foreground
"light blue" :weight bold
:height
1.2 :inherit variable-pitch
))
3811 (((min-colors 88) (class color
)
3813 (:foreground
"blue1" :weight bold
:height
1.2 :inherit variable-pitch
))
3816 (:foreground
"blue" :weight bold
:height
1.2 :inherit variable-pitch
))
3818 "Face used for low level group tags."
3819 :group
'custom-faces
)
3820 ;; backward-compatibility alias
3821 (put 'custom-group-tag-face
'face-alias
'custom-group-tag
)
3823 (define-widget 'custom-group
'custom
3826 :sample-face-get
'custom-group-sample-face-get
3827 :documentation-property
'group-documentation
3828 :help-echo
"Set or reset all members of this group."
3829 :value-create
'custom-group-value-create
3830 :action
'custom-group-action
3831 :custom-category
'group
3832 :custom-set
'custom-group-set
3833 :custom-mark-to-save
'custom-group-mark-to-save
3834 :custom-reset-current
'custom-group-reset-current
3835 :custom-reset-saved
'custom-group-reset-saved
3836 :custom-reset-standard
'custom-group-reset-standard
3837 :custom-mark-to-reset-standard
'custom-group-mark-to-reset-standard
3838 :custom-state-set-and-redraw
'custom-group-state-set-and-redraw
3839 :custom-menu
'custom-group-menu-create
)
3841 (defun custom-group-sample-face-get (widget)
3842 ;; Use :sample-face.
3843 (or (nth (1- (widget-get widget
:custom-level
)) custom-group-tag-faces
)
3846 (define-widget 'custom-group-visibility
'visibility
3847 "An indicator and manipulator for hidden group contents."
3848 :create
'custom-group-visibility-create
)
3850 (defun custom-group-visibility-create (widget)
3851 (let ((visible (widget-value widget
)))
3853 (insert "--------")))
3854 (widget-default-create widget
))
3856 (defun custom-group-members (symbol groups-only
)
3857 "Return SYMBOL's custom group members.
3858 If GROUPS-ONLY non-nil, return only those members that are groups."
3859 (if (not groups-only
)
3860 (get symbol
'custom-group
)
3862 (dolist (entry (get symbol
'custom-group
))
3863 (when (eq (nth 1 entry
) 'custom-group
)
3864 (push entry members
)))
3865 (nreverse members
))))
3867 (defun custom-group-value-create (widget)
3868 "Insert a customize group for WIDGET in the current buffer."
3869 (unless (eq (widget-get widget
:custom-state
) 'hidden
)
3870 (custom-load-widget widget
))
3871 (let* ((state (widget-get widget
:custom-state
))
3872 (level (widget-get widget
:custom-level
))
3873 ;; (indent (widget-get widget :indent))
3874 (prefix (widget-get widget
:custom-prefix
))
3875 (buttons (widget-get widget
:buttons
))
3876 (tag (widget-get widget
:tag
))
3877 (symbol (widget-value widget
))
3878 (members (custom-group-members symbol
3879 (and (eq custom-buffer-style
'tree
)
3880 custom-browse-only-groups
))))
3881 (cond ((and (eq custom-buffer-style
'tree
)
3883 (or members
(custom-unloaded-widget-p widget
)))
3884 (custom-browse-insert-prefix prefix
)
3885 (push (widget-create-child-and-convert
3886 widget
'custom-browse-visibility
3887 ;; :tag-glyph "plus"
3891 ;; (widget-glyph-insert nil "-- " "horizontal")
3892 (push (widget-create-child-and-convert
3893 widget
'custom-browse-group-tag
)
3895 (insert " " tag
"\n")
3896 (widget-put widget
:buttons buttons
))
3897 ((and (eq custom-buffer-style
'tree
)
3898 (zerop (length members
)))
3899 (custom-browse-insert-prefix prefix
)
3901 ;; (widget-glyph-insert nil "[ ]" "empty")
3902 ;; (widget-glyph-insert nil "-- " "horizontal")
3903 (push (widget-create-child-and-convert
3904 widget
'custom-browse-group-tag
)
3906 (insert " " tag
"\n")
3907 (widget-put widget
:buttons buttons
))
3908 ((eq custom-buffer-style
'tree
)
3909 (custom-browse-insert-prefix prefix
)
3910 (if (zerop (length members
))
3912 (custom-browse-insert-prefix prefix
)
3914 ;; (widget-glyph-insert nil "[ ]" "empty")
3915 ;; (widget-glyph-insert nil "-- " "horizontal")
3916 (push (widget-create-child-and-convert
3917 widget
'custom-browse-group-tag
)
3919 (insert " " tag
"\n")
3920 (widget-put widget
:buttons buttons
))
3921 (push (widget-create-child-and-convert
3922 widget
'custom-browse-visibility
3923 ;; :tag-glyph "minus"
3927 ;; (widget-glyph-insert nil "-\\ " "top")
3928 (push (widget-create-child-and-convert
3929 widget
'custom-browse-group-tag
)
3931 (insert " " tag
"\n")
3932 (widget-put widget
:buttons buttons
)
3933 (message "Creating group...")
3934 (let* ((members (custom-sort-items members
3935 custom-browse-sort-alphabetically
3936 custom-browse-order-groups
))
3937 (prefixes (widget-get widget
:custom-prefixes
))
3938 (custom-prefix-list (custom-prefix-add symbol prefixes
))
3939 (extra-prefix (if (widget-get widget
:custom-last
)
3942 (prefix (concat prefix extra-prefix
))
3945 (setq entry
(car members
)
3946 members
(cdr members
))
3947 (push (widget-create-child-and-convert
3948 widget
(nth 1 entry
)
3950 :tag
(custom-unlispify-tag-name (nth 0 entry
))
3951 :custom-prefixes custom-prefix-list
3952 :custom-level
(1+ level
)
3953 :custom-last
(null members
)
3954 :value
(nth 0 entry
)
3955 :custom-prefix prefix
)
3957 (widget-put widget
:children
(reverse children
)))
3958 (message "Creating group...done")))
3961 ;; Create level indicator.
3963 (if (eq custom-buffer-style
'links
)
3964 (push (widget-create-child-and-convert
3965 widget
'custom-group-link
3969 (insert-char ?\
(* custom-buffer-indent
(1- level
)))
3971 (push (widget-create-child-and-convert
3972 widget
'custom-group-visibility
3973 :help-echo
"Show members of this group."
3974 :action
'custom-toggle-parent
3975 (not (eq state
'hidden
)))
3978 ;; Create magic button.
3979 (let ((magic (widget-create-child-and-convert
3980 widget
'custom-magic nil
)))
3981 (widget-put widget
:custom-magic magic
)
3982 (push magic buttons
))
3984 (widget-put widget
:buttons buttons
)
3985 ;; Insert documentation.
3986 (if (and (eq custom-buffer-style
'links
) (> level
1))
3987 (widget-put widget
:documentation-indent
0))
3988 (widget-add-documentation-string-button
3989 widget
:visibility-widget
'custom-visibility
))
3993 ;; Add parent groups references above the group.
3994 (if t
;;; This should test that the buffer
3995 ;;; was made to display a group.
3997 (if (custom-add-parent-links widget
3999 "Parent group documentation:")
4001 ;; Create level indicator.
4002 (insert-char ?\
(* custom-buffer-indent
(1- level
)))
4005 (let ((start (point)))
4006 (insert tag
" group: ")
4007 (widget-specify-sample widget start
(point)))
4008 (if (< (length (widget-docstring widget
)) 50)
4009 (insert (widget-docstring widget
)))
4010 ;; Create visibility indicator.
4011 (unless (eq custom-buffer-style
'links
)
4013 (push (widget-create-child-and-convert
4015 :help-echo
"Hide members of this group."
4016 :action
'custom-toggle-parent
4017 (not (eq state
'hidden
)))
4020 ;; Create more dashes.
4021 ;; Use 76 instead of 75 to compensate for the temporary "<"
4022 ;; added by `widget-insert'.
4023 (insert-char ?-
(- 76 (current-column)
4024 (* custom-buffer-indent level
)))
4026 ;; Create magic button.
4027 (let ((magic (widget-create-child-and-convert
4028 widget
'custom-magic
4031 (widget-put widget
:custom-magic magic
)
4032 (push magic buttons
))
4034 (widget-put widget
:buttons buttons
)
4035 ;; Insert documentation.
4036 (if (>= (length (widget-docstring widget
)) 50)
4037 (widget-add-documentation-string-button
4038 widget
:visibility-widget
'custom-visibility
))
4041 (if nil
;;; This should test that the buffer
4042 ;;; was not made to display a group.
4044 (insert-char ?\ custom-buffer-indent
)
4045 (custom-add-parent-links widget
)))
4046 (custom-add-see-also widget
4047 (make-string (* custom-buffer-indent level
)
4050 (message "Creating group...")
4051 (let* ((members (custom-sort-items members
4052 custom-buffer-sort-alphabetically
4053 custom-buffer-order-groups
))
4054 (prefixes (widget-get widget
:custom-prefixes
))
4055 (custom-prefix-list (custom-prefix-add symbol prefixes
))
4056 (length (length members
))
4058 (children (mapcar (lambda (entry)
4059 (widget-insert "\n")
4061 Creating group members... %2d%%"
4062 (/ (* 100.0 count
) length
))
4063 (setq count
(1+ count
))
4065 (widget-create-child-and-convert
4066 widget
(nth 1 entry
)
4068 :tag
(custom-unlispify-tag-name
4070 :custom-prefixes custom-prefix-list
4071 :custom-level
(1+ level
)
4072 :value
(nth 0 entry
))
4073 (unless (eq (preceding-char) ?
\n)
4074 (widget-insert "\n"))))
4076 (message "Creating group magic...")
4077 (mapc 'custom-magic-reset children
)
4078 (message "Creating group state...")
4079 (widget-put widget
:children children
)
4080 (custom-group-state-update widget
)
4081 (message "Creating group... done"))
4084 (insert-char ?\
(* custom-buffer-indent
(1- level
)))
4085 (insert "\\- " (widget-get widget
:tag
) " group end ")
4086 (insert-char ?-
(- 75 (current-column) (* custom-buffer-indent level
)))
4089 (defvar custom-group-menu
4090 `(("Set for Current Session" custom-group-set
4092 (eq (widget-get widget
:custom-state
) 'modified
)))
4093 ,@(when (or custom-file init-file-user
)
4094 '(("Save for Future Sessions" custom-group-save
4096 (memq (widget-get widget
:custom-state
) '(modified set
))))))
4097 ("Undo Edits" custom-group-reset-current
4099 (memq (widget-get widget
:custom-state
) '(modified))))
4100 ("Reset to Saved" custom-group-reset-saved
4102 (memq (widget-get widget
:custom-state
) '(modified set
))))
4103 ,@(when (or custom-file init-file-user
)
4104 '(("Erase Customization" custom-group-reset-standard
4106 (memq (widget-get widget
:custom-state
) '(modified set saved
)))))))
4107 "Alist of actions for the `custom-group' widget.
4108 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
4109 the menu entry, ACTION is the function to call on the widget when the
4110 menu is selected, and FILTER is a predicate which takes a `custom-group'
4111 widget as an argument, and returns non-nil if ACTION is valid on that
4112 widget. If FILTER is nil, ACTION is always valid.")
4114 (defun custom-group-action (widget &optional event
)
4115 "Show the menu for `custom-group' WIDGET.
4116 Optional EVENT is the location for the menu."
4117 (if (eq (widget-get widget
:custom-state
) 'hidden
)
4118 (custom-toggle-hide widget
)
4119 (let* ((completion-ignore-case t
)
4120 (answer (widget-choose (concat "Operation on "
4121 (custom-unlispify-tag-name
4122 (widget-get widget
:value
)))
4123 (custom-menu-filter custom-group-menu
4127 (funcall answer widget
)))))
4129 (defun custom-group-set (widget)
4130 "Set changes in all modified group members."
4131 (dolist (child (widget-get widget
:children
))
4132 (when (eq (widget-get child
:custom-state
) 'modified
)
4133 (widget-apply child
:custom-set
))))
4135 (defun custom-group-mark-to-save (widget)
4136 "Mark all modified group members for saving."
4137 (dolist (child (widget-get widget
:children
))
4138 (when (memq (widget-get child
:custom-state
) '(modified set
))
4139 (widget-apply child
:custom-mark-to-save
))))
4141 (defsubst custom-group-state-set-and-redraw
(widget)
4142 "Set state of group widget WIDGET and redraw with current settings."
4143 (dolist (child (widget-get widget
:children
))
4144 (when (memq (widget-get child
:custom-state
) '(modified set
))
4145 (widget-apply child
:custom-state-set-and-redraw
))))
4147 (defun custom-group-save (widget)
4148 "Save all modified group members."
4149 (custom-group-mark-to-save widget
)
4151 (custom-group-state-set-and-redraw widget
))
4153 (defun custom-group-reset-current (widget)
4154 "Reset all modified group members."
4155 (dolist (child (widget-get widget
:children
))
4156 (when (eq (widget-get child
:custom-state
) 'modified
)
4157 (widget-apply child
:custom-reset-current
))))
4159 (defun custom-group-reset-saved (widget)
4160 "Reset all modified or set group members."
4161 (dolist (child (widget-get widget
:children
))
4162 (when (memq (widget-get child
:custom-state
) '(modified set
))
4163 (widget-apply child
:custom-reset-saved
))))
4165 (defun custom-group-reset-standard (widget)
4166 "Reset all modified, set, or saved group members."
4167 (let ((custom-reset-standard-variables-list '(t))
4168 (custom-reset-standard-faces-list '(t)))
4169 (custom-group-mark-to-reset-standard widget
)
4170 (custom-reset-standard-save-and-update)))
4172 (defun custom-group-mark-to-reset-standard (widget)
4173 "Mark to reset all modified, set, or saved group members."
4174 (dolist (child (widget-get widget
:children
))
4175 (when (memq (widget-get child
:custom-state
)
4176 '(modified set saved
))
4177 (widget-apply child
:custom-mark-to-reset-standard
))))
4179 (defun custom-group-state-update (widget)
4181 (unless (eq (widget-get widget
:custom-state
) 'hidden
)
4182 (let* ((children (widget-get widget
:children
))
4183 (states (mapcar (lambda (child)
4184 (widget-get child
:custom-state
))
4186 (magics custom-magic-alist
)
4189 (let ((magic (car (car magics
))))
4190 (if (and (not (eq magic
'hidden
))
4191 (memq magic states
))
4194 (setq magics
(cdr magics
)))))
4195 (widget-put widget
:custom-state found
)))
4196 (custom-magic-reset widget
))
4198 ;;; Reading and writing the custom file.
4201 (defcustom custom-file nil
4202 "File used for storing customization information.
4203 The default is nil, which means to use your init file
4204 as specified by `user-init-file'. If the value is not nil,
4205 it should be an absolute file name.
4207 You can set this option through Custom, if you carefully read the
4208 last paragraph below. However, usually it is simpler to write
4209 something like the following in your init file:
4211 \(setq custom-file \"~/.emacs-custom.el\")
4214 Note that both lines are necessary: the first line tells Custom to
4215 save all customizations in this file, but does not load it.
4217 When you change this variable outside Custom, look in the
4218 previous custom file \(usually your init file) for the
4219 forms `(custom-set-variables ...)' and `(custom-set-faces ...)',
4220 and copy them (whichever ones you find) to the new custom file.
4221 This will preserve your existing customizations.
4223 If you save this option using Custom, Custom will write all
4224 currently saved customizations, including the new one for this
4225 option itself, into the file you specify, overwriting any
4226 `custom-set-variables' and `custom-set-faces' forms already
4227 present in that file. It will not delete any customizations from
4228 the old custom file. You should do that manually if that is what you
4229 want. You also have to put something like `\(load \"CUSTOM-FILE\")
4230 in your init file, where CUSTOM-FILE is the actual name of the
4231 file. Otherwise, Emacs will not load the file when it starts up,
4232 and hence will not set `custom-file' to that file either."
4233 :type
'(choice (const :tag
"Your Emacs init file" nil
)
4234 (file :format
"%t:%v%d"
4236 "Please read entire docstring below before setting \
4237 this through Custom.
4238 Click on \"More\" \(or position point there and press RETURN)
4239 if only the first line of the docstring is shown."))
4242 (defun custom-file ()
4243 "Return the file name for saving customizations."
4246 (let ((user-init-file user-init-file
)
4248 (if (eq system-type
'ms-dos
) "~/_emacs" "~/.emacs")))
4249 (when (null user-init-file
)
4250 (if (or (file-exists-p default-init-file
)
4251 (and (eq system-type
'windows-nt
)
4252 (file-exists-p "~/_emacs")))
4253 ;; Started with -q, i.e. the file containing
4254 ;; Custom settings hasn't been read. Saving
4255 ;; settings there would overwrite other settings.
4256 (error "Saving settings from \"emacs -q\" would overwrite existing customizations"))
4257 (setq user-init-file default-init-file
))
4260 ;; If recentf-mode is non-nil, this is defined.
4261 (declare-function recentf-expand-file-name
"recentf" (name))
4264 (defun custom-save-all ()
4265 "Save all customizations in `custom-file'."
4266 (when (and (null custom-file
) init-file-had-error
)
4267 (error "Cannot save customizations; init file was not fully loaded"))
4268 (let* ((filename (custom-file))
4273 (recentf-expand-file-name (custom-file)))
4276 (old-buffer (find-buffer-visiting filename
))
4279 (with-current-buffer (let ((find-file-visit-truename t
))
4280 (or old-buffer
(find-file-noselect filename
)))
4281 ;; We'll save using file-precious-flag, so avoid destroying
4282 ;; symlinks. (If we're not already visiting the buffer, this is
4283 ;; handled by find-file-visit-truename, above.)
4285 (setq old-buffer-name
(buffer-file-name))
4286 (set-visited-file-name (file-chase-links filename
)))
4288 (unless (eq major-mode
'emacs-lisp-mode
)
4290 (let ((inhibit-read-only t
))
4291 (custom-save-variables)
4292 (custom-save-faces))
4293 (let ((file-precious-flag t
))
4297 (set-visited-file-name old-buffer-name
)
4298 (set-buffer-modified-p nil
))
4299 (kill-buffer (current-buffer))))))
4302 (defun customize-save-customized ()
4303 "Save all user options which have been set in this session."
4305 (mapatoms (lambda (symbol)
4306 (let ((face (get symbol
'customized-face
))
4307 (value (get symbol
'customized-value
))
4308 (face-comment (get symbol
'customized-face-comment
))
4310 (get symbol
'customized-variable-comment
)))
4312 (put symbol
'saved-face face
)
4313 (custom-push-theme 'theme-face symbol
'user
'set value
)
4314 (put symbol
'customized-face nil
))
4316 (put symbol
'saved-value value
)
4317 (custom-push-theme 'theme-value symbol
'user
'set value
)
4318 (put symbol
'customized-value nil
))
4319 (when variable-comment
4320 (put symbol
'saved-variable-comment variable-comment
)
4321 (put symbol
'customized-variable-comment nil
))
4323 (put symbol
'saved-face-comment face-comment
)
4324 (put symbol
'customized-face-comment nil
)))))
4325 ;; We really should update all custom buffers here.
4328 ;; Editing the custom file contents in a buffer.
4330 (defun custom-save-delete (symbol)
4331 "Delete all calls to SYMBOL from the contents of the current buffer.
4332 Leave point at the old location of the first such call,
4333 or (if there were none) at the end of the buffer.
4335 This function does not save the buffer."
4336 (goto-char (point-min))
4337 ;; Skip all whitespace and comments.
4338 (while (forward-comment 1))
4340 (save-excursion (forward-sexp (buffer-size)))) ; Test for scan errors.
4343 (while t
;; We exit this loop only via throw.
4344 ;; Skip all whitespace and comments.
4345 (while (forward-comment 1))
4346 (let ((start (point))
4347 (sexp (condition-case nil
4348 (read (current-buffer))
4349 (end-of-file (throw 'found nil
)))))
4350 (when (and (listp sexp
)
4351 (eq (car sexp
) symbol
))
4352 (delete-region start
(point))
4354 (setq first
(point)))))))
4357 ;; Move in front of local variables, otherwise long Custom
4358 ;; entries would make them ineffective.
4359 (let ((pos (point-max))
4360 (case-fold-search t
))
4362 (goto-char (point-max))
4363 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min))
4365 (when (search-forward "Local Variables:" nil t
)
4366 (setq pos
(line-beginning-position))))
4369 (defun custom-save-variables ()
4370 "Save all customized variables in `custom-file'."
4372 (custom-save-delete 'custom-set-variables
)
4373 (let ((standard-output (current-buffer))
4374 (saved-list (make-list 1 0))
4376 ;; First create a sorted list of saved variables.
4379 (if (and (get symbol
'saved-value
)
4380 ;; ignore theme values
4381 (or (null (get symbol
'theme-value
))
4382 (eq 'user
(caar (get symbol
'theme-value
)))))
4383 (nconc saved-list
(list symbol
)))))
4384 (setq saved-list
(sort (cdr saved-list
) 'string
<))
4387 (princ "(custom-set-variables
4388 ;; custom-set-variables was added by Custom.
4389 ;; If you edit it by hand, you could mess it up, so be careful.
4390 ;; Your init file should contain only one such instance.
4391 ;; If there is more than one, they won't work right.\n")
4392 (dolist (symbol saved-list
)
4393 (let ((spec (car-safe (get symbol
'theme-value
)))
4394 (value (get symbol
'saved-value
))
4395 (requests (get symbol
'custom-requests
))
4396 (now (and (not (custom-variable-p symbol
))
4398 (eq (get symbol
'force-value
)
4400 (comment (get symbol
'saved-variable-comment
)))
4401 ;; Check REQUESTS for validity.
4402 (dolist (request requests
)
4403 (when (and (symbolp request
) (not (featurep request
)))
4404 (message "Unknown requested feature: %s" request
)
4405 (setq requests
(delq request requests
))))
4406 ;; Is there anything customized about this variable?
4407 (when (or (and spec
(eq (car spec
) 'user
))
4409 (and (null spec
) (get symbol
'saved-value
)))
4410 ;; Output an element for this variable.
4411 ;; It has the form (SYMBOL VALUE-FORM NOW REQUESTS COMMENT).
4412 ;; SYMBOL is the variable name.
4413 ;; VALUE-FORM is an expression to return the customized value.
4414 ;; NOW if non-nil means always set the variable immediately
4415 ;; when the customizations are reloaded. This is used
4416 ;; for rogue variables
4417 ;; REQUESTS is a list of packages to load before setting the
4418 ;; variable. Each element of it will be passed to `require'.
4419 ;; COMMENT is whatever comment the user has specified
4420 ;; with the customize facility.
4427 (when (or now requests comment
)
4430 (when (or requests comment
)
4440 (unless (looking-at "\n")
4443 (defun custom-save-faces ()
4444 "Save all customized faces in `custom-file'."
4446 (custom-save-delete 'custom-reset-faces
)
4447 (custom-save-delete 'custom-set-faces
)
4448 (let ((standard-output (current-buffer))
4449 (saved-list (make-list 1 0))
4451 ;; First create a sorted list of saved faces.
4454 (if (and (get symbol
'saved-face
)
4455 (eq 'user
(car (car-safe (get symbol
'theme-face
)))))
4456 (nconc saved-list
(list symbol
)))))
4457 (setq saved-list
(sort (cdr saved-list
) 'string
<))
4458 ;; The default face must be first, since it affects the others.
4459 (if (memq 'default saved-list
)
4460 (setq saved-list
(cons 'default
(delq 'default saved-list
))))
4463 (princ "(custom-set-faces
4464 ;; custom-set-faces was added by Custom.
4465 ;; If you edit it by hand, you could mess it up, so be careful.
4466 ;; Your init file should contain only one such instance.
4467 ;; If there is more than one, they won't work right.\n")
4468 (dolist (symbol saved-list
)
4469 (let ((spec (car-safe (get symbol
'theme-face
)))
4470 (value (get symbol
'saved-face
))
4471 (now (not (or (get symbol
'face-defface-spec
)
4472 (and (not (custom-facep symbol
))
4473 (not (get symbol
'force-face
))))))
4474 (comment (get symbol
'saved-face-comment
)))
4475 (when (or (and spec
(eq (nth 0 spec
) 'user
))
4477 (and (null spec
) (get symbol
'saved-face
)))
4478 ;; Don't print default face here.
4485 (when (or now comment
)
4495 (unless (looking-at "\n")
4498 ;;; The Customize Menu.
4502 (defcustom custom-menu-nesting
2
4503 "Maximum nesting in custom menus."
4505 :group
'custom-menu
)
4507 (defun custom-face-menu-create (widget symbol
)
4508 "Ignoring WIDGET, create a menu entry for customization face SYMBOL."
4509 (vector (custom-unlispify-menu-entry symbol
)
4510 `(customize-face ',symbol
)
4513 (defun custom-variable-menu-create (widget symbol
)
4514 "Ignoring WIDGET, create a menu entry for customization variable SYMBOL."
4515 (let ((type (get symbol
'custom-type
)))
4516 (unless (listp type
)
4517 (setq type
(list type
)))
4518 (if (and type
(widget-get type
:custom-menu
))
4519 (widget-apply type
:custom-menu symbol
)
4520 (vector (custom-unlispify-menu-entry symbol
)
4521 `(customize-variable ',symbol
)
4524 ;; Add checkboxes to boolean variable entries.
4525 (widget-put (get 'boolean
'widget-type
)
4526 :custom-menu
(lambda (widget symbol
)
4527 (vector (custom-unlispify-menu-entry symbol
)
4528 `(customize-variable ',symbol
)
4530 ':selected symbol
)))
4532 (defun custom-group-menu-create (widget symbol
)
4533 "Ignoring WIDGET, create a menu entry for customization group SYMBOL."
4534 `( ,(custom-unlispify-menu-entry symbol t
)
4535 :filter
(lambda (&rest junk
)
4536 (let* ((menu (custom-menu-create ',symbol
)))
4537 (if (consp menu
) (cdr menu
) menu
)))))
4540 (defun custom-menu-create (symbol)
4541 "Create menu for customization group SYMBOL.
4542 The menu is in a format applicable to `easy-menu-define'."
4543 (let* ((deactivate-mark nil
)
4544 (item (vector (custom-unlispify-menu-entry symbol
)
4545 `(customize-group ',symbol
)
4547 (if (and (or (not (boundp 'custom-menu-nesting
))
4548 (>= custom-menu-nesting
0))
4550 (custom-load-symbol symbol
)
4551 (< (length (get symbol
'custom-group
)) widget-menu-max-size
)))
4552 (let ((custom-prefix-list (custom-prefix-add symbol
4553 custom-prefix-list
))
4554 (members (custom-sort-items (get symbol
'custom-group
)
4555 custom-menu-sort-alphabetically
4556 custom-menu-order-groups
)))
4557 `(,(custom-unlispify-menu-entry symbol t
)
4560 ,@(mapcar (lambda (entry)
4561 (widget-apply (if (listp (nth 1 entry
))
4563 (list (nth 1 entry
)))
4564 :custom-menu
(nth 0 entry
)))
4569 (defun customize-menu-create (symbol &optional name
)
4570 "Return a customize menu for customization group SYMBOL.
4571 If optional NAME is given, use that as the name of the menu.
4572 Otherwise the menu will be named `Customize'.
4573 The format is suitable for use with `easy-menu-define'."
4575 (setq name
"Customize"))
4577 :filter
(lambda (&rest junk
)
4578 (let ((menu (custom-menu-create ',symbol
)))
4579 (if (consp menu
) (cdr menu
) menu
)))))
4581 ;;; Toolbar and menubar support
4584 Custom-mode-menu
(list custom-mode-map custom-field-keymap
)
4585 "Menu used in customization buffers."
4586 (nconc (list "Custom"
4587 (customize-menu-create 'customize
))
4588 (mapcar (lambda (arg)
4589 (let ((tag (nth 0 arg
))
4590 (command (nth 1 arg
))
4591 (active (nth 2 arg
))
4593 (vector tag command
:active
(eval active
) :help help
)))
4596 (defvar tool-bar-map
)
4598 ;;; `custom-tool-bar-map' used to be set up here. This will fail to
4599 ;;; DTRT when `display-graphic-p' returns nil during compilation. Hence
4600 ;;; we set this up lazily in `Custom-mode'.
4601 (defvar custom-tool-bar-map nil
4602 "Keymap for toolbar in Custom mode.")
4604 ;;; The Custom Mode.
4606 (defun Custom-no-edit (pos &optional event
)
4607 "Invoke button at POS, or refuse to allow editing of Custom buffer."
4609 (error "You can't edit this part of the Custom buffer"))
4611 (defun Custom-newline (pos &optional event
)
4612 "Invoke button at POS, or refuse to allow editing of Custom buffer."
4614 (let ((button (get-char-property pos
'button
)))
4616 (widget-apply-action button event
)
4617 (error "You can't edit this part of the Custom buffer"))))
4619 (defun Custom-goto-parent ()
4620 "Go to the parent group listed at the top of this buffer.
4621 If several parents are listed, go to the first of them."
4624 (goto-char (point-min))
4625 (if (search-forward "\nParent groups: " nil t
)
4626 (let* ((button (get-char-property (point) 'button
))
4627 (parent (downcase (widget-get button
:tag
))))
4628 (customize-group parent
)))))
4630 (defcustom Custom-mode-hook nil
4631 "Hook called when entering Custom mode."
4633 :group
'custom-buffer
)
4635 (defun custom-state-buffer-message (widget)
4636 (if (eq (widget-get (widget-get widget
:parent
) :custom-state
) 'modified
)
4637 (message "To install your edits, invoke [State] and choose the Set operation")))
4639 (define-derived-mode Custom-mode nil
"Custom"
4640 "Major mode for editing customization buffers.
4642 The following commands are available:
4645 Move to next button, link or editable field. \\[widget-forward]
4646 Move to previous button, link or editable field. \\[advertised-widget-backward]
4647 \\<custom-field-keymap>\
4648 Complete content of editable text field. \\[widget-complete]
4649 \\<custom-mode-map>\
4650 Invoke button under the mouse pointer. \\[widget-button-click]
4651 Invoke button under point. \\[widget-button-press]
4652 Set all options from current text. \\[Custom-set]
4653 Make values in current text permanent. \\[Custom-save]
4654 Make text match actual option values. \\[Custom-reset-current]
4655 Reset options to permanent settings. \\[Custom-reset-saved]
4656 Erase customizations; set options
4657 and buffer text to the standard values. \\[Custom-reset-standard]
4659 Entry to this mode calls the value of `Custom-mode-hook'
4660 if that value is non-nil."
4661 (use-local-map custom-mode-map
)
4662 (easy-menu-add Custom-mode-menu
)
4663 (set (make-local-variable 'tool-bar-map
)
4664 (or custom-tool-bar-map
4665 ;; Set up `custom-tool-bar-map'.
4666 (let ((map (make-sparse-keymap)))
4669 (tool-bar-local-item-from-menu
4670 (nth 1 arg
) (nth 4 arg
) map custom-mode-map
))
4672 (setq custom-tool-bar-map map
))))
4673 (make-local-variable 'custom-options
)
4674 (make-local-variable 'custom-local-buffer
)
4675 (make-local-variable 'widget-documentation-face
)
4676 (setq widget-documentation-face
'custom-documentation
)
4677 (make-local-variable 'widget-button-face
)
4678 (setq widget-button-face custom-button
)
4679 (setq show-trailing-whitespace nil
)
4681 ;; We need this because of the "More" button on docstrings.
4682 ;; Otherwise clicking on "More" can push point offscreen, which
4683 ;; causes the window to recenter on point, which pushes the
4684 ;; newly-revealed docstring offscreen; which is annoying. -- cyd.
4685 (set (make-local-variable 'widget-button-click-moves-point
) t
)
4687 (set (make-local-variable 'widget-button-pressed-face
) custom-button-pressed
)
4688 (set (make-local-variable 'widget-mouse-face
) custom-button-mouse
)
4690 ;; When possible, use relief for buttons, not bracketing. This test
4691 ;; may not be optimal.
4692 (when custom-raised-buttons
4693 (set (make-local-variable 'widget-push-button-prefix
) "")
4694 (set (make-local-variable 'widget-push-button-suffix
) "")
4695 (set (make-local-variable 'widget-link-prefix
) "")
4696 (set (make-local-variable 'widget-link-suffix
) ""))
4697 (add-hook 'widget-edit-functions
'custom-state-buffer-message nil t
))
4699 (put 'Custom-mode
'mode-class
'special
)
4701 ;; backward-compatibility
4702 (defun custom-mode ()
4703 "Non-interactive variant of `Custom-mode'."
4705 (make-obsolete 'custom-mode
'Custom-mode
"23.1")
4706 (put 'custom-mode
'mode-class
'special
)
4707 (define-obsolete-variable-alias 'custom-mode-hook
'Custom-mode-hook
"23.1")
4710 '("^No user option defaults have been changed since Emacs "
4712 "^No \\(?:customized\\|rogue\\|saved\\) user options"
4713 "^No customizable items matching "
4714 "^There are unset changes"
4715 "^Cannot set hidden variable"
4716 "^No \\(?:saved\\|backup\\) value for "
4717 "^No standard setting known for "
4718 "^No standard setting for this face"
4719 "^Saving settings from \"emacs -q\" would overwrite existing customizations"))
4720 (add-to-list 'debug-ignored-errors regexp
))
4726 ;; arch-tag: 64533aa4-1b1a-48c3-8812-f9dc718e8a6f
4727 ;;; cus-edit.el ends here