Mercurial > emacs
annotate lisp/cus-edit.el @ 72085:eeafd2670b7f
(tumme-write-tags): Add.
author | Mathias Dahl <mathias.dahl@gmail.com> |
---|---|
date | Mon, 24 Jul 2006 16:09:17 +0000 |
parents | 2cbf89629cad |
children | dd56da5d679d 8a8e69664178 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37911
diff
changeset
|
1 ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages |
17334 | 2 ;; |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64494
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, |
68109
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
4 ;; 2005, 2006 Free Software Foundation, Inc. |
17334 | 5 ;; |
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
48949
f216c93c4189
(customize-save-variable): Take themes into account.
Richard M. Stallman <rms@gnu.org>
parents:
48709
diff
changeset
|
7 ;; Maintainer: FSF |
17334 | 8 ;; Keywords: help, faces |
9 | |
17521
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
11 |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
15 ;; any later version. |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
16 |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
20 ;; GNU General Public License for more details. |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
21 |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
17521
ddce9ecc6f6a
(custom-face-set): Don't copy an empty face,
Richard M. Stallman <rms@gnu.org>
parents:
17415
diff
changeset
|
26 |
17334 | 27 ;;; Commentary: |
28 ;; | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
29 ;; This file implements the code to create and edit customize buffers. |
48949
f216c93c4189
(customize-save-variable): Take themes into account.
Richard M. Stallman <rms@gnu.org>
parents:
48709
diff
changeset
|
30 ;; |
17334 | 31 ;; See `custom.el'. |
32 | |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
33 ;; No commands should have names starting with `custom-' because |
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
34 ;; that interferes with completion. Use `customize-' for commands |
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
35 ;; that the user will run with M-x, and `Custom-' for interactive commands. |
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
36 |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
37 ;; The identity of a customize option is represented by a Lisp symbol. |
60214 | 38 ;; The following values are associated with an option. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
39 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
40 ;; 0. The current value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
41 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
42 ;; This is the value of the option as seen by "the rest of Emacs". |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
43 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
44 ;; Usually extracted by 'default-value', but can be extracted with |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
45 ;; different means if the option symbol has the 'custom-get' |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
46 ;; property. Similarly, set-default (or the 'custom-set' property) |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
47 ;; can set it. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
48 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
49 ;; 1. The widget value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
50 |
60214 | 51 ;; This is the value shown in the widget in a customize buffer. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
52 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
53 ;; 2. The customized value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
54 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
55 ;; This is the last value given to the option through customize. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
56 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
57 ;; It is stored in the 'customized-value' property of the option, in a |
60214 | 58 ;; cons-cell whose car evaluates to the customized value. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
59 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
60 ;; 3. The saved value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
61 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
62 ;; This is last value saved from customize. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
63 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
64 ;; It is stored in the 'saved-value' property of the option, in a |
60214 | 65 ;; cons-cell whose car evaluates to the saved value. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
66 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
67 ;; 4. The standard value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
68 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
69 ;; This is the value given in the 'defcustom' declaration. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
70 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
71 ;; It is stored in the 'standard-value' property of the option, in a |
60214 | 72 ;; cons-cell whose car evaluates to the standard value. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
73 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
74 ;; 5. The "think" value. |
60214 | 75 |
76 ;; This is what customize thinks the current value should be. | |
77 | |
78 ;; This is the customized value, if any such value exists, otherwise | |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
79 ;; the saved value, if that exists, and as a last resort the standard |
60214 | 80 ;; value. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
81 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
82 ;; The reason for storing values unevaluated: This is so you can have |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
83 ;; values that depend on the environment. For example, you can have a |
60214 | 84 ;; variable that has one value when Emacs is running under a window |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
85 ;; system, and another value on a tty. Since the evaluation is only done |
60214 | 86 ;; when the variable is first initialized, this is only relevant for the |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
87 ;; saved (and standard) values, but affect others values for |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
88 ;; compatibility. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
89 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
90 ;; You can see (and modify and save) this unevaluated value by selecting |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
91 ;; "Show Saved Lisp Expression" from the Lisp interface. This will |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
92 ;; give you the unevaluated saved value, if any, otherwise the |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
93 ;; unevaluated standard value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
94 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
95 ;; The possible states for a customize widget are: |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
96 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
97 ;; 0. unknown |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
98 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
99 ;; The state has not been determined yet. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
100 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
101 ;; 1. modified |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
102 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
103 ;; The widget value is different from the current value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
104 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
105 ;; 2. changed |
60214 | 106 |
107 ;; The current value is different from the "think" value. | |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
108 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
109 ;; 3. set |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
110 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
111 ;; The "think" value is the customized value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
112 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
113 ;; 4. saved |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
114 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
115 ;; The "think" value is the saved value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
116 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
117 ;; 5. standard |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
118 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
119 ;; The "think" value is the standard value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
120 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
121 ;; 6. rogue |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
122 |
60214 | 123 ;; There is no standard value. This means that the variable was |
67600
d14352717f67
Introductory comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67549
diff
changeset
|
124 ;; not defined with defcustom, nor handled in cus-start.el. Most |
d14352717f67
Introductory comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67549
diff
changeset
|
125 ;; standard interactive Custom commands do not let you create a |
d14352717f67
Introductory comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67549
diff
changeset
|
126 ;; Custom buffer containing such variables. However, such Custom |
d14352717f67
Introductory comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67549
diff
changeset
|
127 ;; buffers can be created, for instance, by calling |
d14352717f67
Introductory comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67549
diff
changeset
|
128 ;; `customize-apropos' with a prefix arg or by calling |
60296 | 129 ;; `customize-option' non-interactively. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
130 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
131 ;; 7. hidden |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
132 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
133 ;; There is no widget value. |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
134 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
135 ;; 8. mismatch |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
136 |
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
137 ;; The widget value is not valid member of the :type specified for the |
60214 | 138 ;; option. |
60004
2832745c4aee
(custom-buffer-create-internal): Improve help-echo.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
139 |
17334 | 140 ;;; Code: |
141 | |
142 (require 'cus-face) | |
143 (require 'wid-edit) | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
144 (eval-when-compile |
64931
94a635fcc582
(custom-save-all, custom-save-delete): Bind recentf-exclude to exclude
Eli Zaretskii <eliz@gnu.org>
parents:
64762
diff
changeset
|
145 (defvar custom-versions-load-alist) ; from cus-load |
94a635fcc582
(custom-save-all, custom-save-delete): Bind recentf-exclude to exclude
Eli Zaretskii <eliz@gnu.org>
parents:
64762
diff
changeset
|
146 (defvar recentf-exclude)) ; from recentf.el |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
147 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
148 (condition-case nil |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
149 (require 'cus-load) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
150 (error nil)) |
17334 | 151 |
18089 | 152 (condition-case nil |
153 (require 'cus-start) | |
154 (error nil)) | |
155 | |
17415 | 156 (put 'custom-define-hook 'custom-type 'hook) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
157 (put 'custom-define-hook 'standard-value '(nil)) |
17415 | 158 (custom-add-to-group 'customize 'custom-define-hook 'custom-variable) |
159 | |
17334 | 160 ;;; Customization Groups. |
161 | |
162 (defgroup emacs nil | |
163 "Customization of the One True Editor." | |
164 :link '(custom-manual "(emacs)Top")) | |
165 | |
166 ;; Most of these groups are stolen from `finder.el', | |
167 (defgroup editing nil | |
168 "Basic text editing facilities." | |
169 :group 'emacs) | |
170 | |
171 (defgroup abbrev nil | |
172 "Abbreviation handling, typing shortcuts, macros." | |
173 :tag "Abbreviations" | |
174 :group 'editing) | |
175 | |
176 (defgroup matching nil | |
177 "Various sorts of searching and matching." | |
178 :group 'editing) | |
179 | |
180 (defgroup emulations nil | |
181 "Emulations of other editors." | |
52281 | 182 :link '(custom-manual "(emacs)Emulation") |
17334 | 183 :group 'editing) |
184 | |
185 (defgroup mouse nil | |
186 "Mouse support." | |
187 :group 'editing) | |
188 | |
189 (defgroup outlines nil | |
190 "Support for hierarchical outlining." | |
191 :group 'editing) | |
192 | |
193 (defgroup external nil | |
194 "Interfacing to external utilities." | |
195 :group 'emacs) | |
196 | |
197 (defgroup processes nil | |
198 "Process, subshell, compilation, and job control support." | |
199 :group 'external | |
200 :group 'development) | |
201 | |
22068
82db88d21acd
(convenience): New group.
Richard M. Stallman <rms@gnu.org>
parents:
22001
diff
changeset
|
202 (defgroup convenience nil |
82db88d21acd
(convenience): New group.
Richard M. Stallman <rms@gnu.org>
parents:
22001
diff
changeset
|
203 "Convenience features for faster editing." |
82db88d21acd
(convenience): New group.
Richard M. Stallman <rms@gnu.org>
parents:
22001
diff
changeset
|
204 :group 'emacs) |
82db88d21acd
(convenience): New group.
Richard M. Stallman <rms@gnu.org>
parents:
22001
diff
changeset
|
205 |
17334 | 206 (defgroup programming nil |
207 "Support for programming in other languages." | |
208 :group 'emacs) | |
209 | |
210 (defgroup languages nil | |
211 "Specialized modes for editing programming languages." | |
212 :group 'programming) | |
213 | |
214 (defgroup lisp nil | |
215 "Lisp support, including Emacs Lisp." | |
66957
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
216 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
17334 | 217 :group 'languages |
218 :group 'development) | |
219 | |
220 (defgroup c nil | |
221 "Support for the C language and related languages." | |
66957
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
222 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
52281 | 223 :link '(custom-manual "(ccmode)") |
17334 | 224 :group 'languages) |
225 | |
226 (defgroup tools nil | |
227 "Programming tools." | |
228 :group 'programming) | |
229 | |
230 (defgroup oop nil | |
231 "Support for object-oriented programming." | |
232 :group 'programming) | |
233 | |
234 (defgroup applications nil | |
235 "Applications written in Emacs." | |
236 :group 'emacs) | |
237 | |
238 (defgroup calendar nil | |
239 "Calendar and time management support." | |
240 :group 'applications) | |
241 | |
242 (defgroup mail nil | |
243 "Modes for electronic-mail handling." | |
244 :group 'applications) | |
245 | |
246 (defgroup news nil | |
247 "Support for netnews reading and posting." | |
52281 | 248 :link '(custom-manual "(gnus)") |
17334 | 249 :group 'applications) |
250 | |
251 (defgroup games nil | |
252 "Games, jokes and amusements." | |
253 :group 'applications) | |
254 | |
255 (defgroup development nil | |
256 "Support for further development of Emacs." | |
257 :group 'emacs) | |
258 | |
259 (defgroup docs nil | |
260 "Support for Emacs documentation." | |
261 :group 'development) | |
262 | |
263 (defgroup extensions nil | |
264 "Emacs Lisp language extensions." | |
265 :group 'development) | |
266 | |
267 (defgroup internal nil | |
268 "Code for Emacs internals, build process, defaults." | |
269 :group 'development) | |
270 | |
271 (defgroup maint nil | |
272 "Maintenance aids for the Emacs development group." | |
273 :tag "Maintenance" | |
274 :group 'development) | |
275 | |
276 (defgroup environment nil | |
277 "Fitting Emacs with its environment." | |
278 :group 'emacs) | |
279 | |
280 (defgroup comm nil | |
281 "Communications, networking, remote access to files." | |
282 :tag "Communication" | |
283 :group 'environment) | |
284 | |
285 (defgroup hardware nil | |
286 "Support for interfacing with exotic hardware." | |
287 :group 'environment) | |
288 | |
289 (defgroup terminals nil | |
290 "Support for terminal types." | |
291 :group 'environment) | |
292 | |
293 (defgroup unix nil | |
294 "Front-ends/assistants for, or emulators of, UNIX features." | |
295 :group 'environment) | |
296 | |
297 (defgroup vms nil | |
298 "Support code for vms." | |
299 :group 'environment) | |
300 | |
301 (defgroup i18n nil | |
302 "Internationalization and alternate character-set support." | |
52281 | 303 :link '(custom-manual "(emacs)International") |
17334 | 304 :group 'environment |
305 :group 'editing) | |
306 | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
307 (defgroup x nil |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
308 "The X Window system." |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
309 :group 'environment) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
310 |
17334 | 311 (defgroup frames nil |
312 "Support for Emacs frames and window systems." | |
313 :group 'environment) | |
314 | |
315 (defgroup data nil | |
316 "Support editing files of data." | |
317 :group 'emacs) | |
318 | |
18320
bb83860447d0
(files): New group `files'.
Richard M. Stallman <rms@gnu.org>
parents:
18258
diff
changeset
|
319 (defgroup files nil |
bb83860447d0
(files): New group `files'.
Richard M. Stallman <rms@gnu.org>
parents:
18258
diff
changeset
|
320 "Support editing files." |
bb83860447d0
(files): New group `files'.
Richard M. Stallman <rms@gnu.org>
parents:
18258
diff
changeset
|
321 :group 'emacs) |
bb83860447d0
(files): New group `files'.
Richard M. Stallman <rms@gnu.org>
parents:
18258
diff
changeset
|
322 |
17334 | 323 (defgroup wp nil |
324 "Word processing." | |
325 :group 'emacs) | |
326 | |
327 (defgroup tex nil | |
328 "Code related to the TeX formatter." | |
66957
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
329 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
17334 | 330 :group 'wp) |
331 | |
332 (defgroup faces nil | |
333 "Support for multiple fonts." | |
334 :group 'emacs) | |
335 | |
336 (defgroup hypermedia nil | |
337 "Support for links between text or other media types." | |
338 :group 'emacs) | |
339 | |
340 (defgroup help nil | |
341 "Support for on-line help systems." | |
342 :group 'emacs) | |
343 | |
25685 | 344 (defgroup multimedia nil |
345 "Non-textual support, specifically images and sound." | |
346 :group 'emacs) | |
347 | |
17334 | 348 (defgroup local nil |
349 "Code local to your site." | |
350 :group 'emacs) | |
351 | |
352 (defgroup customize '((widgets custom-group)) | |
353 "Customization of the Customization support." | |
354 :prefix "custom-" | |
17415 | 355 :group 'help) |
356 | |
357 (defgroup custom-faces nil | |
358 "Faces used by customize." | |
359 :group 'customize | |
17334 | 360 :group 'faces) |
361 | |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
362 (defgroup custom-browse nil |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
363 "Control customize browser." |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
364 :prefix "custom-" |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
365 :group 'customize) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
366 |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
367 (defgroup custom-buffer nil |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
368 "Control customize buffers." |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
369 :prefix "custom-" |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
370 :group 'customize) |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
371 |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
372 (defgroup custom-menu nil |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
373 "Control customize menus." |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
374 :prefix "custom-" |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
375 :group 'customize) |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
376 |
17415 | 377 (defgroup abbrev-mode nil |
378 "Word abbreviations mode." | |
52281 | 379 :link '(custom-manual "(emacs)Abbrevs") |
17415 | 380 :group 'abbrev) |
381 | |
382 (defgroup alloc nil | |
383 "Storage allocation and gc for GNU Emacs Lisp interpreter." | |
384 :tag "Storage Allocation" | |
385 :group 'internal) | |
386 | |
387 (defgroup undo nil | |
388 "Undoing changes in buffers." | |
52281 | 389 :link '(custom-manual "(emacs)Undo") |
17415 | 390 :group 'editing) |
391 | |
392 (defgroup modeline nil | |
393 "Content of the modeline." | |
394 :group 'environment) | |
395 | |
396 (defgroup editing-basics nil | |
397 "Most basic editing facilities." | |
398 :group 'editing) | |
399 | |
400 (defgroup display nil | |
401 "How characters are displayed in buffers." | |
402 :group 'environment) | |
403 | |
404 (defgroup execute nil | |
405 "Executing external commands." | |
406 :group 'processes) | |
407 | |
408 (defgroup installation nil | |
409 "The Emacs installation." | |
410 :group 'environment) | |
411 | |
412 (defgroup dired nil | |
413 "Directory editing." | |
414 :group 'environment) | |
415 | |
416 (defgroup limits nil | |
417 "Internal Emacs limits." | |
418 :group 'internal) | |
419 | |
420 (defgroup debug nil | |
421 "Debugging Emacs itself." | |
422 :group 'development) | |
423 | |
424 (defgroup minibuffer nil | |
63249
32b12a7e7c4f
(minibuffer): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
63194
diff
changeset
|
425 "Controling the behavior of the minibuffer." |
52281 | 426 :link '(custom-manual "(emacs)Minibuffer") |
17415 | 427 :group 'environment) |
428 | |
429 (defgroup keyboard nil | |
430 "Input from the keyboard." | |
431 :group 'environment) | |
432 | |
433 (defgroup mouse nil | |
434 "Input from the mouse." | |
435 :group 'environment) | |
436 | |
437 (defgroup menu nil | |
438 "Input from the menus." | |
439 :group 'environment) | |
440 | |
61475
89d32002193d
* cus-edit.el (dnd): New group.
Jan Djärv <jan.h.d@swipnet.se>
parents:
61396
diff
changeset
|
441 (defgroup dnd nil |
89d32002193d
* cus-edit.el (dnd): New group.
Jan Djärv <jan.h.d@swipnet.se>
parents:
61396
diff
changeset
|
442 "Handling data from drag and drop." |
89d32002193d
* cus-edit.el (dnd): New group.
Jan Djärv <jan.h.d@swipnet.se>
parents:
61396
diff
changeset
|
443 :group 'environment) |
89d32002193d
* cus-edit.el (dnd): New group.
Jan Djärv <jan.h.d@swipnet.se>
parents:
61396
diff
changeset
|
444 |
17415 | 445 (defgroup auto-save nil |
446 "Preventing accidential loss of data." | |
18320
bb83860447d0
(files): New group `files'.
Richard M. Stallman <rms@gnu.org>
parents:
18258
diff
changeset
|
447 :group 'files) |
17415 | 448 |
449 (defgroup processes-basics nil | |
450 "Basic stuff dealing with processes." | |
451 :group 'processes) | |
452 | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
453 (defgroup mule nil |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
454 "MULE Emacs internationalization." |
18053
941f5d1a241e
(cus-start): Require cus-start.
Richard M. Stallman <rms@gnu.org>
parents:
18033
diff
changeset
|
455 :group 'i18n) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
456 |
17415 | 457 (defgroup windows nil |
458 "Windows within a frame." | |
52281 | 459 :link '(custom-manual "(emacs)Windows") |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
460 :group 'environment) |
17415 | 461 |
67660
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
462 (defgroup mac nil |
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
463 "Mac specific features." |
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
464 :link '(custom-manual "(emacs)Mac OS") |
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
465 :group 'environment |
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
466 :version "22.1" |
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
467 :prefix "mac-") |
ae5e8c21dbf1
(mac): New group.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
67600
diff
changeset
|
468 |
17334 | 469 ;;; Utilities. |
470 | |
471 (defun custom-split-regexp-maybe (regexp) | |
472 "If REGEXP is a string, split it to a list at `\\|'. | |
25685 | 473 You can get the original back with from the result with: |
17334 | 474 (mapconcat 'identity result \"\\|\") |
475 | |
476 IF REGEXP is not a string, return it unchanged." | |
477 (if (stringp regexp) | |
478 (let ((start 0) | |
479 all) | |
480 (while (string-match "\\\\|" regexp start) | |
481 (setq all (cons (substring regexp start (match-beginning 0)) all) | |
482 start (match-end 0))) | |
483 (nreverse (cons (substring regexp start) all))) | |
484 regexp)) | |
485 | |
17415 | 486 (defun custom-variable-prompt () |
49104
b74a6560ecbb
(custom-variable-prompt): Doc change. Use custom-variable-p.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49013
diff
changeset
|
487 "Prompt for a custom variable, defaulting to the variable at point. |
17415 | 488 Return a list suitable for use in `interactive'." |
66957
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
489 (let* ((v (variable-at-point)) |
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
490 (default (and (symbolp v) (custom-variable-p v) (symbol-name v))) |
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
491 (enable-recursive-minibuffers t) |
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
492 val) |
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
493 (setq val (completing-read |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
494 (if default (format "Customize variable (default %s): " default) |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
495 "Customize variable: ") |
66957
38c5bc4332b9
(lisp, c, tex): Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66941
diff
changeset
|
496 obarray 'custom-variable-p t nil nil default)) |
17415 | 497 (list (if (equal val "") |
18085
3da4eaba1fe8
(custom-variable-prompt): Handle variable-at-point returning 0.
Richard M. Stallman <rms@gnu.org>
parents:
18067
diff
changeset
|
498 (if (symbolp v) v nil) |
3da4eaba1fe8
(custom-variable-prompt): Handle variable-at-point returning 0.
Richard M. Stallman <rms@gnu.org>
parents:
18067
diff
changeset
|
499 (intern val))))) |
17415 | 500 |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
501 (defun custom-menu-filter (menu widget) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
502 "Convert MENU to the form used by `widget-choose'. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
503 MENU should be in the same format as `custom-variable-menu'. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
504 WIDGET is the widget to apply the filter entries of MENU on." |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
505 (let ((result nil) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
506 current name action filter) |
25685 | 507 (while menu |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
508 (setq current (car menu) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
509 name (nth 0 current) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
510 action (nth 1 current) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
511 filter (nth 2 current) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
512 menu (cdr menu)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
513 (if (or (null filter) (funcall filter widget)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
514 (push (cons name action) result) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
515 (push name result))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
516 (nreverse result))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
517 |
17415 | 518 ;;; Unlispify. |
519 | |
17334 | 520 (defvar custom-prefix-list nil |
28130 | 521 "List of prefixes that should be ignored by `custom-unlispify'.") |
17334 | 522 |
523 (defcustom custom-unlispify-menu-entries t | |
524 "Display menu entries as words instead of symbols if non nil." | |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
525 :group 'custom-menu |
17334 | 526 :type 'boolean) |
527 | |
18812
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
528 (defcustom custom-unlispify-remove-prefixes nil |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
529 "Non-nil means remove group prefixes from option names in buffer." |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
530 :group 'custom-menu |
43508
c092c3c65251
2002-02-24 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43246
diff
changeset
|
531 :group 'custom-buffer |
18812
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
532 :type 'boolean) |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
533 |
17334 | 534 (defun custom-unlispify-menu-entry (symbol &optional no-suffix) |
28130 | 535 "Convert SYMBOL into a menu entry." |
17334 | 536 (cond ((not custom-unlispify-menu-entries) |
537 (symbol-name symbol)) | |
538 ((get symbol 'custom-tag) | |
539 (if no-suffix | |
540 (get symbol 'custom-tag) | |
541 (concat (get symbol 'custom-tag) "..."))) | |
542 (t | |
49556
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
543 (with-current-buffer (get-buffer-create " *Custom-Work*") |
17334 | 544 (erase-buffer) |
545 (princ symbol (current-buffer)) | |
546 (goto-char (point-min)) | |
47168
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
547 ;; FIXME: Boolean variables are not predicates, so they shouldn't |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
548 ;; end with `-p'. -stef |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
549 ;; (when (and (eq (get symbol 'custom-type) 'boolean) |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
550 ;; (re-search-forward "-p\\'" nil t)) |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
551 ;; (replace-match "" t t) |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
552 ;; (goto-char (point-min))) |
18812
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
553 (if custom-unlispify-remove-prefixes |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
554 (let ((prefixes custom-prefix-list) |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
555 prefix) |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
556 (while prefixes |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
557 (setq prefix (car prefixes)) |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
558 (if (search-forward prefix (+ (point) (length prefix)) t) |
25685 | 559 (progn |
18812
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
560 (setq prefixes nil) |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
561 (delete-region (point-min) (point))) |
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
562 (setq prefixes (cdr prefixes)))))) |
17334 | 563 (subst-char-in-region (point-min) (point-max) ?- ?\ t) |
564 (capitalize-region (point-min) (point-max)) | |
25685 | 565 (unless no-suffix |
17334 | 566 (goto-char (point-max)) |
567 (insert "...")) | |
568 (buffer-string))))) | |
569 | |
570 (defcustom custom-unlispify-tag-names t | |
571 "Display tag names as words instead of symbols if non nil." | |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
572 :group 'custom-buffer |
17334 | 573 :type 'boolean) |
574 | |
575 (defun custom-unlispify-tag-name (symbol) | |
28130 | 576 "Convert SYMBOL into a menu entry." |
17334 | 577 (let ((custom-unlispify-menu-entries custom-unlispify-tag-names)) |
578 (custom-unlispify-menu-entry symbol t))) | |
579 | |
580 (defun custom-prefix-add (symbol prefixes) | |
28130 | 581 "Add SYMBOL to list of ignored PREFIXES." |
17334 | 582 (cons (or (get symbol 'custom-prefix) |
583 (concat (symbol-name symbol) "-")) | |
584 prefixes)) | |
585 | |
17415 | 586 ;;; Guess. |
587 | |
588 (defcustom custom-guess-name-alist | |
589 '(("-p\\'" boolean) | |
71368
7c41e181974c
(custom-guess-name-alist): Recognize `-flag'.
Richard M. Stallman <rms@gnu.org>
parents:
70179
diff
changeset
|
590 ("-flag\\'" boolean) |
17415 | 591 ("-hook\\'" hook) |
592 ("-face\\'" face) | |
593 ("-file\\'" file) | |
594 ("-function\\'" function) | |
595 ("-functions\\'" (repeat function)) | |
596 ("-list\\'" (repeat sexp)) | |
597 ("-alist\\'" (repeat (cons sexp sexp)))) | |
598 "Alist of (MATCH TYPE). | |
599 | |
25685 | 600 MATCH should be a regexp matching the name of a symbol, and TYPE should |
17415 | 601 be a widget suitable for editing the value of that symbol. The TYPE |
602 of the first entry where MATCH matches the name of the symbol will be | |
25685 | 603 used. |
17415 | 604 |
605 This is used for guessing the type of variables not declared with | |
606 customize." | |
607 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type"))) | |
67983
eea3a49a9d6c
* cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
Chong Yidong <cyd@stupidchicken.com>
parents:
67977
diff
changeset
|
608 :group 'custom-buffer) |
17415 | 609 |
610 (defcustom custom-guess-doc-alist | |
611 '(("\\`\\*?Non-nil " boolean)) | |
612 "Alist of (MATCH TYPE). | |
613 | |
614 MATCH should be a regexp matching a documentation string, and TYPE | |
615 should be a widget suitable for editing the value of a variable with | |
616 that documentation string. The TYPE of the first entry where MATCH | |
617 matches the name of the symbol will be used. | |
618 | |
619 This is used for guessing the type of variables not declared with | |
620 customize." | |
621 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type"))) | |
67983
eea3a49a9d6c
* cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
Chong Yidong <cyd@stupidchicken.com>
parents:
67977
diff
changeset
|
622 :group 'custom-buffer) |
17415 | 623 |
624 (defun custom-guess-type (symbol) | |
625 "Guess a widget suitable for editing the value of SYMBOL. | |
25685 | 626 This is done by matching SYMBOL with `custom-guess-name-alist' and |
17415 | 627 if that fails, the doc string with `custom-guess-doc-alist'." |
628 (let ((name (symbol-name symbol)) | |
629 (names custom-guess-name-alist) | |
630 current found) | |
631 (while names | |
632 (setq current (car names) | |
633 names (cdr names)) | |
634 (when (string-match (nth 0 current) name) | |
635 (setq found (nth 1 current) | |
636 names nil))) | |
637 (unless found | |
638 (let ((doc (documentation-property symbol 'variable-documentation)) | |
639 (docs custom-guess-doc-alist)) | |
25685 | 640 (when doc |
17415 | 641 (while docs |
642 (setq current (car docs) | |
643 docs (cdr docs)) | |
644 (when (string-match (nth 0 current) doc) | |
645 (setq found (nth 1 current) | |
646 docs nil)))))) | |
647 found)) | |
648 | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
649 ;;; Sorting. |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
650 |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
651 (defcustom custom-browse-sort-alphabetically nil |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
652 "If non-nil, sort members of each customization group alphabetically." |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
653 :type 'boolean |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
654 :group 'custom-browse) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
655 |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
656 (defcustom custom-browse-order-groups nil |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
657 "If non-nil, order group members within each customization group. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
658 If `first', order groups before non-groups. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
659 If `last', order groups after non-groups." |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
660 :type '(choice (const first) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
661 (const last) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
662 (const :tag "none" nil)) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
663 :group 'custom-browse) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
664 |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
665 (defcustom custom-browse-only-groups nil |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
666 "If non-nil, show group members only within each customization group." |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
667 :type 'boolean |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
668 :group 'custom-browse) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
669 |
65736
d87f6cfbe849
(custom-buffer-sort-alphabetically): Default to nil.
Juri Linkov <juri@jurta.org>
parents:
65680
diff
changeset
|
670 (defcustom custom-buffer-sort-alphabetically nil |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
671 "If non-nil, sort members of each customization group alphabetically." |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
672 :type 'boolean |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
673 :group 'custom-buffer) |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
674 |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
675 (defcustom custom-buffer-order-groups 'last |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
676 "If non-nil, order group members within each customization group. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
677 If `first', order groups before non-groups. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
678 If `last', order groups after non-groups." |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
679 :type '(choice (const first) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
680 (const last) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
681 (const :tag "none" nil)) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
682 :group 'custom-buffer) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
683 |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
684 (defcustom custom-menu-sort-alphabetically nil |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
685 "If non-nil, sort members of each customization group alphabetically." |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
686 :type 'boolean |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
687 :group 'custom-menu) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
688 |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
689 (defcustom custom-menu-order-groups 'first |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
690 "If non-nil, order group members within each customization group. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
691 If `first', order groups before non-groups. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
692 If `last', order groups after non-groups." |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
693 :type '(choice (const first) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
694 (const last) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
695 (const :tag "none" nil)) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
696 :group 'custom-menu) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
697 |
22332
7ad747c6c5a9
(customize-group, customize-group-other-window)
Karl Heuer <kwzh@gnu.org>
parents:
22068
diff
changeset
|
698 ;;;###autoload (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") |
7ad747c6c5a9
(customize-group, customize-group-other-window)
Karl Heuer <kwzh@gnu.org>
parents:
22068
diff
changeset
|
699 |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
700 (defun custom-sort-items (items sort-alphabetically order-groups) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
701 "Return a sorted copy of ITEMS. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
702 ITEMS should be a `custom-group' property. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
703 If SORT-ALPHABETICALLY non-nil, sort alphabetically. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
704 If ORDER-GROUPS is `first' order groups before non-groups, if `last' order |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
705 groups after non-groups, if nil do not order groups at all." |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
706 (sort (copy-sequence items) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
707 (lambda (a b) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
708 (let ((typea (nth 1 a)) (typeb (nth 1 b)) |
28568
cfff869d8a3d
(custom-sort-items): Avoid symbol-name with new
Dave Love <fx@gnu.org>
parents:
28310
diff
changeset
|
709 (namea (nth 0 a)) (nameb (nth 0 b))) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
710 (cond ((not order-groups) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
711 ;; Since we don't care about A and B order, maybe sort. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
712 (when sort-alphabetically |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
713 (string-lessp namea nameb))) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
714 ((eq typea 'custom-group) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
715 ;; If B is also a group, maybe sort. Otherwise, order A and B. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
716 (if (eq typeb 'custom-group) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
717 (when sort-alphabetically |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
718 (string-lessp namea nameb)) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
719 (eq order-groups 'first))) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
720 ((eq typeb 'custom-group) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
721 ;; Since A cannot be a group, order A and B. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
722 (eq order-groups 'last)) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
723 (sort-alphabetically |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
724 ;; Since A and B cannot be groups, sort. |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
725 (string-lessp namea nameb))))))) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
726 |
17415 | 727 ;;; Custom Mode Commands. |
17334 | 728 |
729 (defvar custom-options nil | |
730 "Customization widgets in the current buffer.") | |
731 | |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
732 (defun Custom-set () |
68086
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
733 "Set the current value of all edited settings in the buffer." |
17334 | 734 (interactive) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
735 (let ((children custom-options)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
736 (if (or (and (= 1 (length children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
737 (memq (widget-type (car children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
738 '(custom-variable custom-face))) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
739 (y-or-n-p "Set all values according to this buffer? ")) |
67970
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
740 (mapc (lambda (child) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
741 (when (eq (widget-get child :custom-state) 'modified) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
742 (widget-apply child :custom-set))) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
743 children) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
744 (message "Aborted")))) |
17334 | 745 |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
746 (defun Custom-save () |
68086
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
747 "Set all edited settings, then save all settings that have been set. |
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
748 If a setting was edited and set before, this saves it. |
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
749 If a setting was merely edited before, this sets it then saves it." |
17334 | 750 (interactive) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
751 (let ((children custom-options)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
752 (if (or (and (= 1 (length children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
753 (memq (widget-type (car children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
754 '(custom-variable custom-face))) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
755 (yes-or-no-p "Save all settings in this buffer? ")) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
756 (progn |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
757 (mapc (lambda (child) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
758 (when (memq (widget-get child :custom-state) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
759 '(modified set changed rogue)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
760 (widget-apply child :custom-save))) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
761 children) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
762 (custom-save-all)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
763 (message "Aborted")))) |
17334 | 764 |
25685 | 765 (defvar custom-reset-menu |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
766 '(("Undo Edits" . Custom-reset-current) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
767 ("Reset to Saved" . Custom-reset-saved) |
67749
1607dd4159f5
(custom-reset-menu, custom-magic-alist, Custom-mode-menu):
Richard M. Stallman <rms@gnu.org>
parents:
67747
diff
changeset
|
768 ("Erase Customization (use standard values)" . Custom-reset-standard)) |
17334 | 769 "Alist of actions for the `Reset' button. |
770 The key is a string containing the name of the action, the value is a | |
28130 | 771 Lisp function taking the widget as an element which will be called |
17334 | 772 when the action is chosen.") |
773 | |
774 (defun custom-reset (event) | |
775 "Select item from reset menu." | |
776 (let* ((completion-ignore-case t) | |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
777 (answer (widget-choose "Reset settings" |
17334 | 778 custom-reset-menu |
779 event))) | |
780 (if answer | |
781 (funcall answer)))) | |
782 | |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
783 (defun Custom-reset-current (&rest ignore) |
68086
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
784 "Reset all edited settings in the buffer to show their current values." |
17334 | 785 (interactive) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
786 (let ((children custom-options)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
787 (if (or (and (= 1 (length children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
788 (memq (widget-type (car children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
789 '(custom-variable custom-face))) |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
790 (y-or-n-p "Reset all settings' buffer text to show current values? ")) |
67970
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
791 (mapc (lambda (widget) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
792 (if (memq (widget-get widget :custom-state) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
793 '(modified changed)) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
794 (widget-apply widget :custom-reset-current))) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
795 children) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
796 (message "Aborted")))) |
17334 | 797 |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
798 (defun Custom-reset-saved (&rest ignore) |
68086
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
799 "Reset all edited or set settings in the buffer to their saved value. |
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
800 This also shows the saved values in the buffer." |
17334 | 801 (interactive) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
802 (let ((children custom-options)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
803 (if (or (and (= 1 (length children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
804 (memq (widget-type (car children)) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
805 '(custom-variable custom-face))) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
806 (y-or-n-p "Reset all settings (current values and buffer text) to saved values? ")) |
67970
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
807 (mapc (lambda (widget) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
808 (if (memq (widget-get widget :custom-state) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
809 '(modified set changed rogue)) |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
810 (widget-apply widget :custom-reset-saved))) |
68194
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
811 children) |
f4bca1157746
(Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):
Luc Teirlinck <teirllm@auburn.edu>
parents:
68178
diff
changeset
|
812 (message "Aborted")))) |
17334 | 813 |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
814 (defun Custom-reset-standard (&rest ignore) |
26625
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
815 "Erase all customization (either current or saved) for the group members. |
67749
1607dd4159f5
(custom-reset-menu, custom-magic-alist, Custom-mode-menu):
Richard M. Stallman <rms@gnu.org>
parents:
67747
diff
changeset
|
816 The immediate result is to restore them to their standard values. |
1607dd4159f5
(custom-reset-menu, custom-magic-alist, Custom-mode-menu):
Richard M. Stallman <rms@gnu.org>
parents:
67747
diff
changeset
|
817 This operation eliminates any saved values for the group members, |
26625
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
818 making them as if they had never been customized at all." |
17334 | 819 (interactive) |
67972 | 820 (let ((children custom-options)) |
821 (if (or (and (= 1 (length children)) | |
822 (memq (widget-type (car children)) | |
823 '(custom-variable custom-face))) | |
68086
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
824 (yes-or-no-p "Erase all customizations for settings in this buffer? ")) |
67972 | 825 (mapc (lambda (widget) |
826 (and (if (widget-get widget :custom-standard-value) | |
827 (widget-apply widget :custom-standard-value) | |
828 t) | |
829 (memq (widget-get widget :custom-state) | |
830 '(modified set changed saved rogue)) | |
831 (widget-apply widget :custom-reset-standard))) | |
832 children) | |
833 (message "Aborted")))) | |
17334 | 834 |
835 ;;; The Customize Commands | |
836 | |
25685 | 837 (defun custom-prompt-variable (prompt-var prompt-val &optional comment) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
838 "Prompt for a variable and a value and return them as a list. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
839 PROMPT-VAR is the prompt for the variable, and PROMPT-VAL is the |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
840 prompt for the value. The %s escape in PROMPT-VAL is replaced with |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
841 the name of the variable. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
842 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
843 If the variable has a `variable-interactive' property, that is used as if |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
844 it were the arg to `interactive' (which see) to interactively read the value. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
845 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
846 If the variable has a `custom-type' property, it must be a widget and the |
25685 | 847 `:prompt-value' property of that widget will be used for reading the value. |
848 | |
849 If optional COMMENT argument is non nil, also prompt for a comment and return | |
850 it as the third element in the list." | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
851 (let* ((var (read-variable prompt-var)) |
25685 | 852 (minibuffer-help-form '(describe-variable var)) |
853 (val | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
854 (let ((prop (get var 'variable-interactive)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
855 (type (get var 'custom-type)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
856 (prompt (format prompt-val var))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
857 (unless (listp type) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
858 (setq type (list type))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
859 (cond (prop |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
860 ;; Use VAR's `variable-interactive' property |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
861 ;; as an interactive spec for prompting. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
862 (call-interactively (list 'lambda '(arg) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
863 (list 'interactive prop) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
864 'arg))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
865 (type |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
866 (widget-prompt-value type |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
867 prompt |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
868 (if (boundp var) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
869 (symbol-value var)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
870 (not (boundp var)))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
871 (t |
25685 | 872 (eval-minibuffer prompt)))))) |
873 (if comment | |
874 (list var val | |
875 (read-string "Comment: " (get var 'variable-comment))) | |
876 (list var val)))) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
877 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
878 ;;;###autoload |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
879 (defun customize-set-value (variable value &optional comment) |
43246
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
880 "Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object. |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
881 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
882 If VARIABLE has a `variable-interactive' property, that is used as if |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
883 it were the arg to `interactive' (which see) to interactively read the value. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
884 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
885 If VARIABLE has a `custom-type' property, it must be a widget and the |
25685 | 886 `:prompt-value' property of that widget will be used for reading the value. |
887 | |
888 If given a prefix (or a COMMENT argument), also prompt for a comment." | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
889 (interactive (custom-prompt-variable "Set variable: " |
25685 | 890 "Set %s to value: " |
891 current-prefix-arg)) | |
49521
c259d8177692
2003-01-29 Didier Verna <didier@xemacs.org>
John Paul Wallington <jpw@pobox.com>
parents:
49300
diff
changeset
|
892 |
25685 | 893 (cond ((string= comment "") |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
894 (put variable 'variable-comment nil)) |
25685 | 895 (comment |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
896 (put variable 'variable-comment comment))) |
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
897 (set variable value)) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
898 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
899 ;;;###autoload |
28130 | 900 (defun customize-set-variable (variable value &optional comment) |
43246
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
901 "Set the default for VARIABLE to VALUE, and return VALUE. |
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
902 VALUE is a Lisp object. |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
903 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
904 If VARIABLE has a `custom-set' property, that is used for setting |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
905 VARIABLE, otherwise `set-default' is used. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
906 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
907 The `customized-value' property of the VARIABLE will be set to a list |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
908 with a quoted VALUE as its sole list member. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
909 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
910 If VARIABLE has a `variable-interactive' property, that is used as if |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
911 it were the arg to `interactive' (which see) to interactively read the value. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
912 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
913 If VARIABLE has a `custom-type' property, it must be a widget and the |
25685 | 914 `:prompt-value' property of that widget will be used for reading the value. |
915 | |
916 If given a prefix (or a COMMENT argument), also prompt for a comment." | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
917 (interactive (custom-prompt-variable "Set variable: " |
25685 | 918 "Set customized value for %s to: " |
919 current-prefix-arg)) | |
43246
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
920 (custom-load-symbol variable) |
69007
b9e2a1b4b54a
* cus-edit.el (customize-set-variable): Push setting to `user' theme.
Chong Yidong <cyd@stupidchicken.com>
parents:
69004
diff
changeset
|
921 (custom-push-theme 'theme-value variable 'user 'set (custom-quote value)) |
28130 | 922 (funcall (or (get variable 'custom-set) 'set-default) variable value) |
923 (put variable 'customized-value (list (custom-quote value))) | |
25685 | 924 (cond ((string= comment "") |
28130 | 925 (put variable 'variable-comment nil) |
926 (put variable 'customized-variable-comment nil)) | |
25685 | 927 (comment |
28130 | 928 (put variable 'variable-comment comment) |
43246
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
929 (put variable 'customized-variable-comment comment))) |
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
930 value) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
931 |
17334 | 932 ;;;###autoload |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
933 (defun customize-save-variable (variable value &optional comment) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
934 "Set the default for VARIABLE to VALUE, and save it for future sessions. |
43246
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
935 Return VALUE. |
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
936 |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
937 If VARIABLE has a `custom-set' property, that is used for setting |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
938 VARIABLE, otherwise `set-default' is used. |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
939 |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
940 The `customized-value' property of the VARIABLE will be set to a list |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
941 with a quoted VALUE as its sole list member. |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
942 |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
943 If VARIABLE has a `variable-interactive' property, that is used as if |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
944 it were the arg to `interactive' (which see) to interactively read the value. |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
945 |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
946 If VARIABLE has a `custom-type' property, it must be a widget and the |
25685 | 947 `:prompt-value' property of that widget will be used for reading the value. |
948 | |
949 If given a prefix (or a COMMENT argument), also prompt for a comment." | |
43063 | 950 (interactive (custom-prompt-variable "Set and save variable: " |
25685 | 951 "Set and save value for %s as: " |
952 current-prefix-arg)) | |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
953 (funcall (or (get variable 'custom-set) 'set-default) variable value) |
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
954 (put variable 'saved-value (list (custom-quote value))) |
67797
7bdbb812b2f9
* custom.el (custom-push-theme): Fix docstring.
Chong Yidong <cyd@stupidchicken.com>
parents:
67793
diff
changeset
|
955 (custom-push-theme 'theme-value variable 'user 'set (custom-quote value)) |
25685 | 956 (cond ((string= comment "") |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
957 (put variable 'variable-comment nil) |
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
958 (put variable 'saved-variable-comment nil)) |
25685 | 959 (comment |
45244
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
960 (put variable 'variable-comment comment) |
3fe5828abc37
(customize-set-value): Rename `var' to `variable' and `val' to `value'.
Pavel Janík <Pavel@Janik.cz>
parents:
45102
diff
changeset
|
961 (put variable 'saved-variable-comment comment))) |
43246
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
962 (custom-save-all) |
c187056ac630
2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
43167
diff
changeset
|
963 value) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
964 |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
965 ;;;###autoload |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
966 (defun customize () |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
967 "Select a customization buffer which you can use to set user options. |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
968 User options are structured into \"groups\". |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
969 Initially the top-level group `Emacs' and its immediate subgroups |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
970 are shown; the contents of those subgroups are initially hidden." |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
971 (interactive) |
17703 | 972 (customize-group 'emacs)) |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
973 |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
974 ;;;###autoload |
47823
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
975 (defun customize-mode (mode) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
976 "Customize options related to the current major mode. |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
977 If a prefix \\[universal-argument] was given (or if the current major mode has no known group), |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
978 then prompt for the MODE to customize." |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
979 (interactive |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
980 (list |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
981 (let ((completion-regexp-list '("-mode\\'")) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
982 (group (custom-group-of-mode major-mode))) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
983 (if (and group (not current-prefix-arg)) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
984 major-mode |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
985 (intern |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
986 (completing-read (if group |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
987 (format "Major mode (default %s): " major-mode) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
988 "Major mode: ") |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
989 obarray |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
990 'custom-group-of-mode |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
991 t nil nil (if group (symbol-name major-mode)))))))) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
992 (customize-group (custom-group-of-mode mode))) |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
993 |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
994 |
4649d9cb92dd
(customize-mode): New command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47809
diff
changeset
|
995 ;;;###autoload |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
996 (defun customize-group (group) |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
997 "Customize GROUP, which must be a customization group." |
67298
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
998 (interactive |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
999 (list (let ((completion-ignore-case t)) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1000 (completing-read "Customize group (default emacs): " |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1001 obarray |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1002 (lambda (symbol) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1003 (or (and (get symbol 'custom-loads) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1004 (not (get symbol 'custom-autoload))) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1005 (get symbol 'custom-group))) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1006 t)))) |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1007 (when (stringp group) |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1008 (if (string-equal "" group) |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1009 (setq group 'emacs) |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1010 (setq group (intern group)))) |
18359
057bb638549c
(custom-nest-groups): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18352
diff
changeset
|
1011 (let ((name (format "*Customize Group: %s*" |
057bb638549c
(custom-nest-groups): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18352
diff
changeset
|
1012 (custom-unlispify-tag-name group)))) |
057bb638549c
(custom-nest-groups): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18352
diff
changeset
|
1013 (if (get-buffer name) |
22332
7ad747c6c5a9
(customize-group, customize-group-other-window)
Karl Heuer <kwzh@gnu.org>
parents:
22068
diff
changeset
|
1014 (pop-to-buffer name) |
18359
057bb638549c
(custom-nest-groups): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18352
diff
changeset
|
1015 (custom-buffer-create (list (list group 'custom-group)) |
18571
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1016 name |
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1017 (concat " for group " |
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1018 (custom-unlispify-tag-name group)))))) |
17334 | 1019 |
1020 ;;;###autoload | |
22001
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1021 (defun customize-group-other-window (group) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1022 "Customize GROUP, which must be a customization group." |
67298
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1023 (interactive |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1024 (list (let ((completion-ignore-case t)) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1025 (completing-read "Customize group (default emacs): " |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1026 obarray |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1027 (lambda (symbol) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1028 (or (and (get symbol 'custom-loads) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1029 (not (get symbol 'custom-autoload))) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1030 (get symbol 'custom-group))) |
7af5860f4444
(customize-group, customize-group-other-window):
Juri Linkov <juri@jurta.org>
parents:
67086
diff
changeset
|
1031 t)))) |
22001
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1032 (when (stringp group) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1033 (if (string-equal "" group) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1034 (setq group 'emacs) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1035 (setq group (intern group)))) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1036 (let ((name (format "*Customize Group: %s*" |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1037 (custom-unlispify-tag-name group)))) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1038 (if (get-buffer name) |
57896
27e0c6aa31c5
(customize-group-other-window):
Richard M. Stallman <rms@gnu.org>
parents:
56161
diff
changeset
|
1039 (let ( |
48975
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1040 ;; Copied from `custom-buffer-create-other-window'. |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1041 (pop-up-windows t) |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1042 (same-window-buffer-names nil) |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1043 (same-window-regexps nil)) |
57896
27e0c6aa31c5
(customize-group-other-window):
Richard M. Stallman <rms@gnu.org>
parents:
56161
diff
changeset
|
1044 (pop-to-buffer name)) |
22001
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1045 (custom-buffer-create-other-window |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1046 (list (list group 'custom-group)) |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1047 name |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1048 (concat " for group " |
e35aafba190f
(customize-group-other-window): Handle groups not
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
1049 (custom-unlispify-tag-name group)))))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1050 |
18089 | 1051 ;;;###autoload |
1052 (defalias 'customize-variable 'customize-option) | |
18086
dbae3eb8b351
(customize-option): Renamed from custom-variable.
Richard M. Stallman <rms@gnu.org>
parents:
18085
diff
changeset
|
1053 |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1054 ;;;###autoload |
18086
dbae3eb8b351
(customize-option): Renamed from custom-variable.
Richard M. Stallman <rms@gnu.org>
parents:
18085
diff
changeset
|
1055 (defun customize-option (symbol) |
dbae3eb8b351
(customize-option): Renamed from custom-variable.
Richard M. Stallman <rms@gnu.org>
parents:
18085
diff
changeset
|
1056 "Customize SYMBOL, which must be a user option variable." |
17415 | 1057 (interactive (custom-variable-prompt)) |
71390
927d95604b99
(customize-option, customize-option-other-window): Error if SYMBOL is nil.
Richard M. Stallman <rms@gnu.org>
parents:
71368
diff
changeset
|
1058 (unless symbol |
927d95604b99
(customize-option, customize-option-other-window): Error if SYMBOL is nil.
Richard M. Stallman <rms@gnu.org>
parents:
71368
diff
changeset
|
1059 (error "No variable specified")) |
64151
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1060 (let ((basevar (indirect-variable symbol))) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1061 (custom-buffer-create (list (list basevar 'custom-variable)) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1062 (format "*Customize Option: %s*" |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1063 (custom-unlispify-tag-name basevar))) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1064 (unless (eq symbol basevar) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1065 (message "`%s' is an alias for `%s'" symbol basevar)))) |
17334 | 1066 |
48975
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1067 ;;;###autoload |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1068 (defalias 'customize-variable-other-window 'customize-option-other-window) |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1069 |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1070 ;;;###autoload |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1071 (defun customize-option-other-window (symbol) |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1072 "Customize SYMBOL, which must be a user option variable. |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1073 Show the buffer in another window, but don't select it." |
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1074 (interactive (custom-variable-prompt)) |
71390
927d95604b99
(customize-option, customize-option-other-window): Error if SYMBOL is nil.
Richard M. Stallman <rms@gnu.org>
parents:
71368
diff
changeset
|
1075 (unless symbol |
927d95604b99
(customize-option, customize-option-other-window): Error if SYMBOL is nil.
Richard M. Stallman <rms@gnu.org>
parents:
71368
diff
changeset
|
1076 (error "No variable specified")) |
64151
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1077 (let ((basevar (indirect-variable symbol))) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1078 (custom-buffer-create-other-window |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1079 (list (list basevar 'custom-variable)) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1080 (format "*Customize Option: %s*" (custom-unlispify-tag-name basevar))) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1081 (unless (eq symbol basevar) |
292d83423c40
(customize-option, customize-option-other-window): Make them handle aliases.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64091
diff
changeset
|
1082 (message "`%s' is an alias for `%s'" symbol basevar)))) |
48975
227f251b919a
(customize-group-other-window): Use pop-to-buffer in
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48958
diff
changeset
|
1083 |
67747
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1084 (defvar customize-changed-options-previous-release "21.1" |
23105
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1085 "Version for `customize-changed-options' to refer back to by default.") |
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1086 |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1087 ;; Packages will update this variable, so make it available. |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1088 ;;;###autoload |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1089 (defvar customize-package-emacs-version-alist nil |
70021
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1090 "Alist mapping versions of Emacs to versions of a package. |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1091 These package versions are listed in the :package-version |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1092 keyword used in `defcustom', `defgroup', and `defface'. Its |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1093 elements look like this: |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1094 |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1095 (PACKAGE (PVERSION . EVERSION)...) |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1096 |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1097 For each PACKAGE, which is a symbol, there are one or more |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1098 elements that contain a package version PVERSION with an |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1099 associated Emacs version EVERSION. These versions are strings. |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1100 For example, the MH-E package updates this alist with the |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1101 following: |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1102 |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1103 (add-to-list 'customize-package-emacs-version-alist |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1104 '(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\") |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1105 (\"7.0\" . \"22.1\") (\"7.1\" . \"22.1\") |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1106 (\"7.2\" . \"22.1\") (\"7.3\" . \"22.1\") |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1107 (\"7.4\" . \"22.1\") (\"8.0\" . \"22.1\"))) |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1108 |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1109 The value of PACKAGE needs to be unique and it needs to match the |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1110 PACKAGE value appearing in the :package-version keyword. Since |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1111 the user might see the value in a error message, a good choice is |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1112 the official name of the package, such as MH-E or Gnus.") |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1113 |
17334 | 1114 ;;;###autoload |
67747
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1115 (defalias 'customize-changed 'customize-changed-options) |
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1116 |
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1117 ;;;###autoload |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1118 (defun customize-changed-options (since-version) |
67747
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1119 "Customize all settings whose meanings have changed in Emacs itself. |
23105
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1120 This includes new user option variables and faces, and new |
67747
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1121 customization groups, as well as older options and faces whose meanings |
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1122 or default values have changed since the previous major Emacs release. |
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1123 |
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1124 With argument SINCE-VERSION (a string), customize all settings |
3b325979ccee
(customize-changed-options-previous-release): Prev release is 21.1.
Richard M. Stallman <rms@gnu.org>
parents:
67745
diff
changeset
|
1125 that were added or redefined since that version." |
23105
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1126 |
69540
a22167168ac4
(customize-changed-options): Mention explicit version number as
Luc Teirlinck <teirllm@auburn.edu>
parents:
69268
diff
changeset
|
1127 (interactive |
a22167168ac4
(customize-changed-options): Mention explicit version number as
Luc Teirlinck <teirllm@auburn.edu>
parents:
69268
diff
changeset
|
1128 (list |
a22167168ac4
(customize-changed-options): Mention explicit version number as
Luc Teirlinck <teirllm@auburn.edu>
parents:
69268
diff
changeset
|
1129 (read-from-minibuffer |
a22167168ac4
(customize-changed-options): Mention explicit version number as
Luc Teirlinck <teirllm@auburn.edu>
parents:
69268
diff
changeset
|
1130 (format "Customize options changed, since version (default %s): " |
a22167168ac4
(customize-changed-options): Mention explicit version number as
Luc Teirlinck <teirllm@auburn.edu>
parents:
69268
diff
changeset
|
1131 customize-changed-options-previous-release)))) |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1132 (if (equal since-version "") |
29762
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1133 (setq since-version nil) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1134 (unless (condition-case nil |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1135 (numberp (read since-version)) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1136 (error nil)) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1137 (signal 'wrong-type-argument (list 'numberp since-version)))) |
23105
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1138 (unless since-version |
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1139 (setq since-version customize-changed-options-previous-release)) |
49218
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1140 |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1141 ;; Load the information for versions since since-version. We use |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1142 ;; custom-load-symbol for this. |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1143 (put 'custom-versions-load-alist 'custom-loads nil) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1144 (dolist (elt custom-versions-load-alist) |
49300
b99be2b86231
(customize-changed-options): Undo last doc change.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49218
diff
changeset
|
1145 (if (customize-version-lessp since-version (car elt)) |
b99be2b86231
(customize-changed-options): Undo last doc change.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49218
diff
changeset
|
1146 (dolist (load (cdr elt)) |
b99be2b86231
(customize-changed-options): Undo last doc change.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49218
diff
changeset
|
1147 (custom-add-load 'custom-versions-load-alist load)))) |
49218
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1148 (custom-load-symbol 'custom-versions-load-alist) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1149 (put 'custom-versions-load-alist 'custom-loads nil) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1150 |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1151 (let (found) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1152 (mapatoms |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1153 (lambda (symbol) |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1154 (let* ((package-version (get symbol 'custom-package-version)) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1155 (version |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1156 (or (and package-version |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1157 (customize-package-emacs-version symbol |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1158 package-version)) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1159 (get symbol 'custom-version)))) |
49218
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1160 (if version |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1161 (when (customize-version-lessp since-version version) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1162 (if (or (get symbol 'custom-group) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1163 (get symbol 'group-documentation)) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1164 (push (list symbol 'custom-group) found)) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1165 (if (custom-variable-p symbol) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1166 (push (list symbol 'custom-variable) found)) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1167 (if (custom-facep symbol) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1168 (push (list symbol 'custom-face) found))))))) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1169 (if found |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1170 (custom-buffer-create (custom-sort-items found t 'first) |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1171 "*Customize Changed Options*") |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1172 (error "No user option defaults have been changed since Emacs %s" |
ddeb57b6c977
(customize-changed-options): Doc addition. Load the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49126
diff
changeset
|
1173 since-version)))) |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1174 |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1175 (defun customize-package-emacs-version (symbol package-version) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1176 "Return Emacs version of SYMBOL. |
70021
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1177 PACKAGE-VERSION has the form (PACKAGE . VERSION). The VERSION of |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1178 PACKAGE is looked up in the associated list |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1179 `customize-package-emacs-version-alist' to find the version of |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1180 Emacs that is associated with it." |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1181 (let (package-versions emacs-version) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1182 ;; Use message instead of error since we want user to be able to |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1183 ;; see the rest of the symbols even if a package author has |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1184 ;; botched things up. |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1185 (cond ((not (listp package-version)) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1186 (message "Invalid package-version value for %s" symbol)) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1187 ((setq package-versions (assq (car package-version) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1188 customize-package-emacs-version-alist)) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1189 (setq emacs-version |
70021
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1190 (cdr (assoc (cdr package-version) package-versions))) |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1191 (unless emacs-version |
70021
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1192 (message "%s version %s not found in %s" symbol |
8991a6461375
* cus-edit.el (customize-package-emacs-version-alist): Update
Bill Wohler <wohler@newt.com>
parents:
69922
diff
changeset
|
1193 (cdr package-version) |
69922
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1194 "customize-package-emacs-version-alist"))) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1195 (t |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1196 (message "Package %s neglected to update %s" |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1197 (car package-version) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1198 "customize-package-emacs-version-alist"))) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1199 emacs-version)) |
dc1f0ab7e276
* custom.el (defcustom, custom-handle-keyword): Add :package-version
Bill Wohler <wohler@newt.com>
parents:
69624
diff
changeset
|
1200 |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1201 (defun customize-version-lessp (version1 version2) |
29762
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1202 ;; Why are the versions strings, and given that they are, why aren't |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1203 ;; they converted to numbers and compared as such here? -- fx |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1204 |
23105
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1205 ;; In case someone made a mistake and left out the quotes |
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1206 ;; in the :version value. |
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1207 (if (numberp version2) |
a47a69af14c8
(customize-version-lessp): Handle a number as VERSION2.
Karl Heuer <kwzh@gnu.org>
parents:
22667
diff
changeset
|
1208 (setq version2 (prin1-to-string version2))) |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1209 (let (major1 major2 minor1 minor2) |
29762
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1210 (string-match "\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" version1) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1211 (setq major1 (read (or (match-string 1 version1) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1212 "0"))) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1213 (setq minor1 (read (or (match-string 3 version1) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1214 "0"))) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1215 (string-match "\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" version2) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1216 (setq major2 (read (or (match-string 1 version2) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1217 "0"))) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1218 (setq minor2 (read (or (match-string 3 version2) |
8c4512ba3671
(customize-changed-options): Check arg.
Dave Love <fx@gnu.org>
parents:
28941
diff
changeset
|
1219 "0"))) |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1220 (or (< major1 major2) |
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1221 (and (= major1 major2) |
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1222 (< minor1 minor2))))) |
48949
f216c93c4189
(customize-save-variable): Take themes into account.
Richard M. Stallman <rms@gnu.org>
parents:
48709
diff
changeset
|
1223 |
20444
a9fbb6791eb7
(customize-changed-options): New function.
Karl Heuer <kwzh@gnu.org>
parents:
20411
diff
changeset
|
1224 ;;;###autoload |
44887
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1225 (defun customize-face (&optional face) |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
1226 "Customize FACE, which should be a face name or nil. |
63661
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1227 If FACE is nil, customize all faces. If FACE is actually a |
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1228 face-alias, customize the face it is aliased to. |
44841
ca88dc883a8d
(customize-face-other-window, customize-face):
Gerd Moellmann <gerd@gnu.org>
parents:
44682
diff
changeset
|
1229 |
ca88dc883a8d
(customize-face-other-window, customize-face):
Gerd Moellmann <gerd@gnu.org>
parents:
44682
diff
changeset
|
1230 Interactively, when point is on text which has a face specified, |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
1231 suggest to customize that face, if it's customizable." |
44841
ca88dc883a8d
(customize-face-other-window, customize-face):
Gerd Moellmann <gerd@gnu.org>
parents:
44682
diff
changeset
|
1232 (interactive |
44887
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1233 (list (read-face-name "Customize face" "all faces" t))) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1234 (if (member face '(nil "")) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1235 (setq face (face-list))) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1236 (if (and (listp face) (null (cdr face))) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1237 (setq face (car face))) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1238 (if (listp face) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1239 (custom-buffer-create (custom-sort-items |
44887
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1240 (mapcar (lambda (s) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1241 (list s 'custom-face)) |
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1242 face) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1243 t nil) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1244 "*Customize Faces*") |
63661
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1245 ;; If FACE is actually an alias, customize the face it is aliased to. |
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1246 (if (get face 'face-alias) |
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1247 (setq face (get face 'face-alias))) |
44887
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1248 (unless (facep face) |
49013
4a3d5b9c79b9
(customize-group, customize-group-other-window):
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48997
diff
changeset
|
1249 (error "Invalid face %S" face)) |
44887
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1250 (custom-buffer-create (list (list face 'custom-face)) |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1251 (format "*Customize Face: %s*" |
44887
01a5b217fd7f
(customize-face): Use read-face-name and handle multiple faces.
Richard M. Stallman <rms@gnu.org>
parents:
44846
diff
changeset
|
1252 (custom-unlispify-tag-name face))))) |
17334 | 1253 |
1254 ;;;###autoload | |
44891 | 1255 (defun customize-face-other-window (&optional face) |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
1256 "Show customization buffer for face FACE in other window. |
63661
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1257 If FACE is actually a face-alias, customize the face it is aliased to. |
44841
ca88dc883a8d
(customize-face-other-window, customize-face):
Gerd Moellmann <gerd@gnu.org>
parents:
44682
diff
changeset
|
1258 |
ca88dc883a8d
(customize-face-other-window, customize-face):
Gerd Moellmann <gerd@gnu.org>
parents:
44682
diff
changeset
|
1259 Interactively, when point is on text which has a face specified, |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
1260 suggest to customize that face, if it's customizable." |
44841
ca88dc883a8d
(customize-face-other-window, customize-face):
Gerd Moellmann <gerd@gnu.org>
parents:
44682
diff
changeset
|
1261 (interactive |
44888
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1262 (list (read-face-name "Customize face" "all faces" t))) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1263 (if (member face '(nil "")) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1264 (setq face (face-list))) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1265 (if (and (listp face) (null (cdr face))) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1266 (setq face (car face))) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1267 (if (listp face) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1268 (custom-buffer-create-other-window |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1269 (custom-sort-items |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1270 (mapcar (lambda (s) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1271 (list s 'custom-face)) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1272 face) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1273 t nil) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1274 "*Customize Faces*") |
63661
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1275 (if (get face 'face-alias) |
49d95c194532
(customize-face, customize-face-other-window): Handle face aliases.
Glenn Morris <rgm@gnu.org>
parents:
63249
diff
changeset
|
1276 (setq face (get face 'face-alias))) |
44888
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1277 (unless (facep face) |
49013
4a3d5b9c79b9
(customize-group, customize-group-other-window):
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48997
diff
changeset
|
1278 (error "Invalid face %S" face)) |
25685 | 1279 (custom-buffer-create-other-window |
44888
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1280 (list (list face 'custom-face)) |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1281 (format "*Customize Face: %s*" |
b74399186334
(customize-face-other-window): Make it work similarly.
Richard M. Stallman <rms@gnu.org>
parents:
44887
diff
changeset
|
1282 (custom-unlispify-tag-name face))))) |
17415 | 1283 |
1284 ;;;###autoload | |
17334 | 1285 (defun customize-customized () |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1286 "Customize all user options set since the last save in this session." |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1287 (interactive) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1288 (let ((found nil)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1289 (mapatoms (lambda (symbol) |
25685 | 1290 (and (or (get symbol 'customized-face) |
1291 (get symbol 'customized-face-comment)) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1292 (custom-facep symbol) |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1293 (push (list symbol 'custom-face) found)) |
25685 | 1294 (and (or (get symbol 'customized-value) |
1295 (get symbol 'customized-variable-comment)) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1296 (boundp symbol) |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1297 (push (list symbol 'custom-variable) found)))) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1298 (if (not found) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1299 (error "No customized user options") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1300 (custom-buffer-create (custom-sort-items found t nil) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1301 "*Customize Customized*")))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1302 |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1303 ;;;###autoload |
50077
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1304 (defun customize-rogue () |
68232
4580b1bedd8a
(customize-rogue): Minor doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68194
diff
changeset
|
1305 "Customize all user variables modified outside customize." |
50077
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1306 (interactive) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1307 (let ((found nil)) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1308 (mapatoms (lambda (symbol) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1309 (let ((cval (or (get symbol 'customized-value) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1310 (get symbol 'saved-value) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1311 (get symbol 'standard-value)))) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1312 (when (and cval ;Declared with defcustom. |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1313 (default-boundp symbol) ;Has a value. |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
1314 (not (equal (eval (car cval)) |
50077
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1315 ;; Which does not match customize. |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1316 (default-value symbol)))) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1317 (push (list symbol 'custom-variable) found))))) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1318 (if (not found) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1319 (error "No rogue user options") |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1320 (custom-buffer-create (custom-sort-items found t nil) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1321 "*Customize Rogue*")))) |
21135e13f9cd
2003-03-10 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
49556
diff
changeset
|
1322 ;;;###autoload |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1323 (defun customize-saved () |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1324 "Customize all already saved user options." |
17334 | 1325 (interactive) |
1326 (let ((found nil)) | |
1327 (mapatoms (lambda (symbol) | |
25685 | 1328 (and (or (get symbol 'saved-face) |
1329 (get symbol 'saved-face-comment)) | |
17334 | 1330 (custom-facep symbol) |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1331 (push (list symbol 'custom-face) found)) |
25685 | 1332 (and (or (get symbol 'saved-value) |
1333 (get symbol 'saved-variable-comment)) | |
17334 | 1334 (boundp symbol) |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1335 (push (list symbol 'custom-variable) found)))) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1336 (if (not found ) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1337 (error "No saved user options") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1338 (custom-buffer-create (custom-sort-items found t nil) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1339 "*Customize Saved*")))) |
17334 | 1340 |
1341 ;;;###autoload | |
1342 (defun customize-apropos (regexp &optional all) | |
67549
9732906a9ef7
(customize-apropos, customize-apropos-options)
Luc Teirlinck <teirllm@auburn.edu>
parents:
67510
diff
changeset
|
1343 "Customize all loaded options, faces and groups matching REGEXP. |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1344 If ALL is `options', include only options. |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1345 If ALL is `faces', include only faces. |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1346 If ALL is `groups', include only groups. |
67510
984ab2cd1b98
(customize-apropos): Avoid listing an option more than once under
Luc Teirlinck <teirllm@auburn.edu>
parents:
67413
diff
changeset
|
1347 If ALL is t (interactively, with prefix arg), include variables |
67677
acbc5122c634
(customize-apropos, customize-apropos-options): Docstring changes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67660
diff
changeset
|
1348 that are not customizable options, as well as faces and groups |
acbc5122c634
(customize-apropos, customize-apropos-options): Docstring changes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67660
diff
changeset
|
1349 \(but we recommend using `apropos-variable' instead)." |
17334 | 1350 (interactive "sCustomize regexp: \nP") |
1351 (let ((found nil)) | |
1352 (mapatoms (lambda (symbol) | |
1353 (when (string-match regexp (symbol-name symbol)) | |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1354 (when (and (not (memq all '(faces options))) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1355 (get symbol 'custom-group)) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1356 (push (list symbol 'custom-group) found)) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1357 (when (and (not (memq all '(options groups))) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1358 (custom-facep symbol)) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1359 (push (list symbol 'custom-face) found)) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1360 (when (and (not (memq all '(groups faces))) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1361 (boundp symbol) |
67510
984ab2cd1b98
(customize-apropos): Avoid listing an option more than once under
Luc Teirlinck <teirllm@auburn.edu>
parents:
67413
diff
changeset
|
1362 (eq (indirect-variable symbol) symbol) |
17334 | 1363 (or (get symbol 'saved-value) |
49104
b74a6560ecbb
(custom-variable-prompt): Doc change. Use custom-variable-p.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49013
diff
changeset
|
1364 (custom-variable-p symbol) |
67510
984ab2cd1b98
(customize-apropos): Avoid listing an option more than once under
Luc Teirlinck <teirllm@auburn.edu>
parents:
67413
diff
changeset
|
1365 (and (not (memq all '(nil options))) |
984ab2cd1b98
(customize-apropos): Avoid listing an option more than once under
Luc Teirlinck <teirllm@auburn.edu>
parents:
67413
diff
changeset
|
1366 (get symbol 'variable-documentation)))) |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1367 (push (list symbol 'custom-variable) found))))) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1368 (if (not found) |
71438
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
1369 (error "No customizable items matching %s" regexp) |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
1370 (custom-buffer-create |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
1371 (custom-sort-items found t custom-buffer-order-groups) |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
1372 "*Customize Apropos*")))) |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1373 |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1374 ;;;###autoload |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1375 (defun customize-apropos-options (regexp &optional arg) |
67549
9732906a9ef7
(customize-apropos, customize-apropos-options)
Luc Teirlinck <teirllm@auburn.edu>
parents:
67510
diff
changeset
|
1376 "Customize all loaded customizable options matching REGEXP. |
67677
acbc5122c634
(customize-apropos, customize-apropos-options): Docstring changes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67660
diff
changeset
|
1377 With prefix arg, include variables that are not customizable options |
acbc5122c634
(customize-apropos, customize-apropos-options): Docstring changes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67660
diff
changeset
|
1378 \(but we recommend using `apropos-variable' instead)." |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1379 (interactive "sCustomize regexp: \nP") |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1380 (customize-apropos regexp (or arg 'options))) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1381 |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1382 ;;;###autoload |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1383 (defun customize-apropos-faces (regexp) |
67549
9732906a9ef7
(customize-apropos, customize-apropos-options)
Luc Teirlinck <teirllm@auburn.edu>
parents:
67510
diff
changeset
|
1384 "Customize all loaded faces matching REGEXP." |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1385 (interactive "sCustomize regexp: \n") |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1386 (customize-apropos regexp 'faces)) |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1387 |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1388 ;;;###autoload |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1389 (defun customize-apropos-groups (regexp) |
67549
9732906a9ef7
(customize-apropos, customize-apropos-options)
Luc Teirlinck <teirllm@auburn.edu>
parents:
67510
diff
changeset
|
1390 "Customize all loaded groups matching REGEXP." |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1391 (interactive "sCustomize regexp: \n") |
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
1392 (customize-apropos regexp 'groups)) |
17334 | 1393 |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1394 ;;; Buffer. |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1395 |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1396 (defcustom custom-buffer-style 'links |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1397 "Control the presentation style for customization buffers. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1398 The value should be a symbol, one of: |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1399 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1400 brackets: groups nest within each other with big horizontal brackets. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1401 links: groups have links to subgroups." |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1402 :type '(radio (const brackets) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1403 (const links)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1404 :group 'custom-buffer) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1405 |
59795
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1406 (defcustom custom-buffer-done-kill nil |
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1407 "*Non-nil means exiting a Custom buffer should kill it." |
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1408 :type 'boolean |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59795
diff
changeset
|
1409 :version "22.1" |
25685 | 1410 :group 'custom-buffer) |
1411 | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1412 (defcustom custom-buffer-indent 3 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1413 "Number of spaces to indent nested groups." |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1414 :type 'integer |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1415 :group 'custom-buffer) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1416 |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1417 (defun custom-get-fresh-buffer (name) |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1418 "Get a fresh new buffer with name NAME. |
51381
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1419 If the buffer already exist, clean it up to be like new. |
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1420 Beware: it's not quite like new. Good enough for custom, but maybe |
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1421 not for everybody." |
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1422 ;; To be more complete, we should also kill all permanent-local variables, |
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1423 ;; but it's not needed for custom. |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1424 (let ((buf (get-buffer name))) |
51429
b107764e9a67
(custom-get-fresh-buffer): Test for nonexistence buffer.
Lute Kamstra <lute@gnu.org>
parents:
51381
diff
changeset
|
1425 (when (and buf (buffer-local-value 'buffer-file-name buf)) |
51381
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1426 ;; This will check if the file is not saved. |
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1427 (kill-buffer buf) |
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1428 (setq buf nil)) |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1429 (if (null buf) |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1430 (get-buffer-create name) |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1431 (with-current-buffer buf |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1432 (kill-all-local-variables) |
51381
a2b5bb57e1c9
(custom-get-fresh-buffer): Be extra paranoid,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51362
diff
changeset
|
1433 (run-hooks 'kill-buffer-hook) |
51561
bed114065e35
(custom-get-fresh-buffer): Kill overlays before erasing the buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51429
diff
changeset
|
1434 ;; Delete overlays before erasing the buffer so the overlay hooks |
bed114065e35
(custom-get-fresh-buffer): Kill overlays before erasing the buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51429
diff
changeset
|
1435 ;; don't get run spuriously when we erase the buffer. |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1436 (let ((ols (overlay-lists))) |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1437 (dolist (ol (nconc (car ols) (cdr ols))) |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1438 (delete-overlay ol))) |
51561
bed114065e35
(custom-get-fresh-buffer): Kill overlays before erasing the buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51429
diff
changeset
|
1439 (erase-buffer) |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1440 buf)))) |
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1441 |
17334 | 1442 ;;;###autoload |
18571
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1443 (defun custom-buffer-create (options &optional name description) |
17334 | 1444 "Create a buffer containing OPTIONS. |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1445 Optional NAME is the name of the buffer. |
17334 | 1446 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where |
1447 SYMBOL is a customization option, and WIDGET is a widget for editing | |
1448 that option." | |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1449 (pop-to-buffer (custom-get-fresh-buffer (or name "*Customization*"))) |
18571
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1450 (custom-buffer-create-internal options description)) |
17415 | 1451 |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1452 ;;;###autoload |
18571
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1453 (defun custom-buffer-create-other-window (options &optional name description) |
57896
27e0c6aa31c5
(customize-group-other-window):
Richard M. Stallman <rms@gnu.org>
parents:
56161
diff
changeset
|
1454 "Create a buffer containing OPTIONS, and display it in another window. |
27e0c6aa31c5
(customize-group-other-window):
Richard M. Stallman <rms@gnu.org>
parents:
56161
diff
changeset
|
1455 The result includes selecting that window. |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1456 Optional NAME is the name of the buffer. |
17415 | 1457 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where |
1458 SYMBOL is a customization option, and WIDGET is a widget for editing | |
1459 that option." | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1460 (unless name (setq name "*Customization*")) |
57896
27e0c6aa31c5
(customize-group-other-window):
Richard M. Stallman <rms@gnu.org>
parents:
56161
diff
changeset
|
1461 (let ((pop-up-windows t) |
22332
7ad747c6c5a9
(customize-group, customize-group-other-window)
Karl Heuer <kwzh@gnu.org>
parents:
22068
diff
changeset
|
1462 (same-window-buffer-names nil) |
7ad747c6c5a9
(customize-group, customize-group-other-window)
Karl Heuer <kwzh@gnu.org>
parents:
22068
diff
changeset
|
1463 (same-window-regexps nil)) |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1464 (pop-to-buffer (custom-get-fresh-buffer name)) |
57896
27e0c6aa31c5
(customize-group-other-window):
Richard M. Stallman <rms@gnu.org>
parents:
56161
diff
changeset
|
1465 (custom-buffer-create-internal options description))) |
18089 | 1466 |
1467 (defcustom custom-reset-button-menu nil | |
1468 "If non-nil, only show a single reset button in customize buffers. | |
1469 This button will have a menu with all three reset operations." | |
1470 :type 'boolean | |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1471 :group 'custom-buffer) |
17415 | 1472 |
45102
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1473 (defcustom custom-buffer-verbose-help t |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1474 "If non-nil, include explanatory text in the customization buffer." |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1475 :type 'boolean |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1476 :group 'custom-buffer) |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1477 |
25685 | 1478 (defun Custom-buffer-done (&rest ignore) |
59795
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1479 "Exit current Custom buffer according to `custom-buffer-done-kill'." |
25685 | 1480 (interactive) |
59795
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1481 (quit-window custom-buffer-done-kill)) |
25685 | 1482 |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1483 (defvar custom-button nil |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1484 "Face used for buttons in customization buffers.") |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1485 |
67961
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
1486 (defvar custom-button-mouse nil |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
1487 "Mouse face used for buttons in customization buffers.") |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
1488 |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1489 (defvar custom-button-pressed nil |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1490 "Face used for pressed buttons in customization buffers.") |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1491 |
25685 | 1492 (defcustom custom-raised-buttons (not (equal (face-valid-attribute-values :box) |
1493 '(("unspecified" . unspecified)))) | |
1494 "If non-nil, indicate active buttons in a `raised-button' style. | |
1495 Otherwise use brackets." | |
1496 :type 'boolean | |
1497 :version "21.1" | |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1498 :group 'custom-buffer |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1499 :set (lambda (variable value) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1500 (custom-set-default variable value) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1501 (setq custom-button |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1502 (if value 'custom-button 'custom-button-unraised)) |
67961
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
1503 (setq custom-button-mouse |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
1504 (if value 'custom-button-mouse 'highlight)) |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1505 (setq custom-button-pressed |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1506 (if value |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1507 'custom-button-pressed |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
1508 'custom-button-pressed-unraised)))) |
25685 | 1509 |
18571
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
1510 (defun custom-buffer-create-internal (options &optional description) |
17334 | 1511 (custom-mode) |
45102
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1512 (if custom-buffer-verbose-help |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1513 (progn |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1514 (widget-insert "This is a customization buffer") |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1515 (if description |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1516 (widget-insert description)) |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1517 (widget-insert (format ". |
67745
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1518 %s buttons; type RET or click mouse-1 to actuate one. |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1519 Editing a setting changes only the text in the buffer. |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1520 Use the setting's State button to set it or save changes in it. |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1521 Saving a change normally works by editing your Emacs init file. |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1522 See " |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1523 (if custom-raised-buttons |
67745
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1524 "`Raised' text indicates" |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1525 "Square brackets indicate"))) |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
1526 (widget-create 'custom-manual |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1527 :tag "Custom file" |
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1528 "(emacs)Saving Customizations") |
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1529 (widget-insert |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1530 " for information on how to save in a different file.\n |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1531 See ") |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
1532 (widget-create 'custom-manual |
45102
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1533 :tag "Help" |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1534 :help-echo "Read the online help." |
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1535 "(emacs)Easy Customization") |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1536 (widget-insert " for more information.\n\n") |
68278
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
1537 (widget-insert "Operate on all settings in this buffer that \ |
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
1538 are not marked HIDDEN:\n ")) |
45102
387844a1f703
(custom-buffer-verbose-help): New variable.
Kim F. Storm <storm@cua.dk>
parents:
44912
diff
changeset
|
1539 (widget-insert " ")) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1540 (widget-create 'push-button |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1541 :tag "Set for Current Session" |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1542 :help-echo "\ |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1543 Make your editing in this buffer take effect for this session." |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1544 :action (lambda (widget &optional event) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1545 (Custom-set))) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1546 (if (not custom-buffer-verbose-help) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1547 (progn |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1548 (widget-insert " ") |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
1549 (widget-create 'custom-manual |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1550 :tag "Help" |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1551 :help-echo "Read the online help." |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1552 "(emacs)Easy Customization"))) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1553 (when (or custom-file user-init-file) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1554 (widget-insert " ") |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1555 (widget-create 'push-button |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1556 :tag "Save for Future Sessions" |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1557 :help-echo "\ |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1558 Make your editing in this buffer take effect for future Emacs sessions. |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1559 This updates your Emacs initialization file or creates a new one." |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1560 :action (lambda (widget &optional event) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
1561 (Custom-save)))) |
18089 | 1562 (if custom-reset-button-menu |
18460
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1563 (progn |
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1564 (widget-insert " ") |
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1565 (widget-create 'push-button |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
1566 :tag "Reset buffer" |
18460
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1567 :help-echo "Show a menu with reset operations." |
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1568 :mouse-down-action (lambda (&rest junk) t) |
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1569 :action (lambda (widget &optional event) |
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1570 (custom-reset event)))) |
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
1571 (widget-insert "\n ") |
18089 | 1572 (widget-create 'push-button |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
1573 :tag "Undo Edits" |
18139
ee3c0d09dcd3
Synched with 1.9908.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18131
diff
changeset
|
1574 :help-echo "\ |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1575 Reset all edited text in this buffer to reflect current values." |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
1576 :action 'Custom-reset-current) |
18089 | 1577 (widget-insert " ") |
1578 (widget-create 'push-button | |
68021
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
1579 :tag "Reset to Saved" |
18139
ee3c0d09dcd3
Synched with 1.9908.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18131
diff
changeset
|
1580 :help-echo "\ |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
1581 Reset all settings in this buffer to their saved values." |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
1582 :action 'Custom-reset-saved) |
68017
025bb43a4fe6
(custom-buffer-create-internal): Move whole buffer "Erase Customization"
Luc Teirlinck <teirllm@auburn.edu>
parents:
67983
diff
changeset
|
1583 (widget-insert " ") |
025bb43a4fe6
(custom-buffer-create-internal): Move whole buffer "Erase Customization"
Luc Teirlinck <teirllm@auburn.edu>
parents:
67983
diff
changeset
|
1584 (when (or custom-file user-init-file) |
025bb43a4fe6
(custom-buffer-create-internal): Move whole buffer "Erase Customization"
Luc Teirlinck <teirllm@auburn.edu>
parents:
67983
diff
changeset
|
1585 (widget-create 'push-button |
025bb43a4fe6
(custom-buffer-create-internal): Move whole buffer "Erase Customization"
Luc Teirlinck <teirllm@auburn.edu>
parents:
67983
diff
changeset
|
1586 :tag "Erase Customization" |
025bb43a4fe6
(custom-buffer-create-internal): Move whole buffer "Erase Customization"
Luc Teirlinck <teirllm@auburn.edu>
parents:
67983
diff
changeset
|
1587 :help-echo "\ |
68021
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
1588 Un-customize all settings in this buffer and save them with standard values." |
68017
025bb43a4fe6
(custom-buffer-create-internal): Move whole buffer "Erase Customization"
Luc Teirlinck <teirllm@auburn.edu>
parents:
67983
diff
changeset
|
1589 :action 'Custom-reset-standard))) |
18373
45ef45c34aa4
(custom-buffer-create-internal):
Richard M. Stallman <rms@gnu.org>
parents:
18371
diff
changeset
|
1590 (widget-insert " ") |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1591 (widget-create 'push-button |
25685 | 1592 :tag "Finish" |
30247
80383e9be1e2
(custom-buffer-create-internal): Use a help-echo function to be more
Dave Love <fx@gnu.org>
parents:
30184
diff
changeset
|
1593 :help-echo |
80383e9be1e2
(custom-buffer-create-internal): Use a help-echo function to be more
Dave Love <fx@gnu.org>
parents:
30184
diff
changeset
|
1594 (lambda (&rest ignore) |
59795
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1595 (if custom-buffer-done-kill |
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1596 "Kill this buffer" |
ba8c5b54e390
(custom-bury-buffer): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59760
diff
changeset
|
1597 "Bury this buffer")) |
25685 | 1598 :action #'Custom-buffer-done) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1599 (widget-insert "\n\n") |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1600 (message "Creating customization items...") |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
1601 (buffer-disable-undo) |
25685 | 1602 (setq custom-options |
17334 | 1603 (if (= (length options) 1) |
1604 (mapcar (lambda (entry) | |
1605 (widget-create (nth 1 entry) | |
18139
ee3c0d09dcd3
Synched with 1.9908.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18131
diff
changeset
|
1606 :documentation-shown t |
17334 | 1607 :custom-state 'unknown |
1608 :tag (custom-unlispify-tag-name | |
1609 (nth 0 entry)) | |
1610 :value (nth 0 entry))) | |
1611 options) | |
1612 (let ((count 0) | |
1613 (length (length options))) | |
1614 (mapcar (lambda (entry) | |
33774
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1615 (prog2 |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1616 (message "Creating customization items ...%2d%%" |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1617 (/ (* 100.0 count) length)) |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1618 (widget-create (nth 1 entry) |
17334 | 1619 :tag (custom-unlispify-tag-name |
1620 (nth 0 entry)) | |
1621 :value (nth 0 entry)) | |
33774
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1622 (setq count (1+ count)) |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1623 (unless (eq (preceding-char) ?\n) |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1624 (widget-insert "\n")) |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1625 (widget-insert "\n"))) |
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
1626 options)))) |
17334 | 1627 (unless (eq (preceding-char) ?\n) |
1628 (widget-insert "\n")) | |
39153
001cb5cd0de9
(custom-buffer-create-internal): Remove "100%" from
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
1629 (message "Creating customization items ...done") |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
1630 (message "Resetting customization items...") |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1631 (unless (eq custom-buffer-style 'tree) |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
1632 (mapc 'custom-magic-reset custom-options)) |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
1633 (message "Resetting customization items...done") |
17334 | 1634 (message "Creating customization setup...") |
1635 (widget-setup) | |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
1636 (buffer-enable-undo) |
17334 | 1637 (goto-char (point-min)) |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
1638 (message "Creating customization setup...done")) |
17334 | 1639 |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1640 ;;; The Tree Browser. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1641 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1642 ;;;###autoload |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1643 (defun customize-browse (&optional group) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1644 "Create a tree browser for the customize hierarchy." |
18812
82c80b23fa9d
(custom-unlispify-remove-prefixes): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18669
diff
changeset
|
1645 (interactive) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1646 (unless group |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1647 (setq group 'emacs)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1648 (let ((name "*Customize Browser*")) |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
1649 (pop-to-buffer (custom-get-fresh-buffer name))) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1650 (custom-mode) |
67745
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1651 (widget-insert (format "\ |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1652 %s buttons; type RET or click mouse-1 |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1653 on a button to invoke its action. |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1654 Invoke [+] to expand a group, and [-] to collapse an expanded group.\n" |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1655 (if custom-raised-buttons |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1656 "`Raised' text indicates" |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1657 "Square brackets indicate"))) |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1658 |
1c2cd41aeda7
(customize-browse): Reword the top-of-buffer help intro.
Richard M. Stallman <rms@gnu.org>
parents:
67744
diff
changeset
|
1659 |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1660 (if custom-browse-only-groups |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1661 (widget-insert "\ |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1662 Invoke the [Group] button below to edit that item in another window.\n\n") |
25685 | 1663 (widget-insert "Invoke the ") |
1664 (widget-create 'item | |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1665 :format "%t" |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1666 :tag "[Group]" |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1667 :tag-glyph "folder") |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1668 (widget-insert ", ") |
25685 | 1669 (widget-create 'item |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1670 :format "%t" |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1671 :tag "[Face]" |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1672 :tag-glyph "face") |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1673 (widget-insert ", and ") |
25685 | 1674 (widget-create 'item |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1675 :format "%t" |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1676 :tag "[Option]" |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1677 :tag-glyph "option") |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1678 (widget-insert " buttons below to edit that |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1679 item in another window.\n\n")) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1680 (let ((custom-buffer-style 'tree)) |
25685 | 1681 (widget-create 'custom-group |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1682 :custom-last t |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1683 :custom-state 'unknown |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1684 :tag (custom-unlispify-tag-name group) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1685 :value group)) |
48997
eb9dca992edf
(customize-browse): Call `widget-setup'.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48975
diff
changeset
|
1686 (widget-setup) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
1687 (goto-char (point-min))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1688 |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1689 (define-widget 'custom-browse-visibility 'item |
20600
323f33e3e92c
(custom-browse-visibility): Doc fix.
Andreas Schwab <schwab@suse.de>
parents:
20562
diff
changeset
|
1690 "Control visibility of items in the customize tree browser." |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1691 :format "%[[%t]%]" |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1692 :action 'custom-browse-visibility-action) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1693 |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1694 (defun custom-browse-visibility-action (widget &rest ignore) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1695 (let ((custom-buffer-style 'tree)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1696 (custom-toggle-parent widget))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1697 |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
1698 (define-widget 'custom-browse-group-tag 'custom-group-link |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1699 "Show parent in other window when activated." |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
1700 :tag "Group" |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1701 :tag-glyph "folder" |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1702 :action 'custom-browse-group-tag-action) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1703 |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1704 (defun custom-browse-group-tag-action (widget &rest ignore) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1705 (let ((parent (widget-get widget :parent))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1706 (customize-group-other-window (widget-value parent)))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1707 |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
1708 (define-widget 'custom-browse-variable-tag 'custom-group-link |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1709 "Show parent in other window when activated." |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
1710 :tag "Option" |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1711 :tag-glyph "option" |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1712 :action 'custom-browse-variable-tag-action) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1713 |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1714 (defun custom-browse-variable-tag-action (widget &rest ignore) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1715 (let ((parent (widget-get widget :parent))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1716 (customize-variable-other-window (widget-value parent)))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1717 |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
1718 (define-widget 'custom-browse-face-tag 'custom-group-link |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1719 "Show parent in other window when activated." |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
1720 :tag "Face" |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1721 :tag-glyph "face" |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1722 :action 'custom-browse-face-tag-action) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1723 |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1724 (defun custom-browse-face-tag-action (widget &rest ignore) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1725 (let ((parent (widget-get widget :parent))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1726 (customize-face-other-window (widget-value parent)))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1727 |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1728 (defconst custom-browse-alist '((" " "space") |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1729 (" | " "vertical") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1730 ("-\\ " "top") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1731 (" |-" "middle") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1732 (" `-" "bottom"))) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1733 |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1734 (defun custom-browse-insert-prefix (prefix) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1735 "Insert PREFIX. On XEmacs convert it to line graphics." |
25685 | 1736 ;; Fixme: do graphics. |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1737 (if nil ; (string-match "XEmacs" emacs-version) |
25685 | 1738 (progn |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1739 (insert "*") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1740 (while (not (string-equal prefix "")) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1741 (let ((entry (substring prefix 0 3))) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1742 (setq prefix (substring prefix 3)) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1743 (let ((overlay (make-overlay (1- (point)) (point) nil t nil)) |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
1744 (name (nth 1 (assoc entry custom-browse-alist)))) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1745 (overlay-put overlay 'end-glyph (widget-glyph-find name entry)) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1746 (overlay-put overlay 'start-open t) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1747 (overlay-put overlay 'end-open t))))) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1748 (insert prefix))) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
1749 |
17334 | 1750 ;;; Modification of Basic Widgets. |
1751 ;; | |
1752 ;; We add extra properties to the basic widgets needed here. This is | |
1753 ;; fine, as long as we are careful to stay within out own namespace. | |
1754 ;; | |
1755 ;; We want simple widgets to be displayed by default, but complex | |
1756 ;; widgets to be hidden. | |
1757 | |
1758 (widget-put (get 'item 'widget-type) :custom-show t) | |
1759 (widget-put (get 'editable-field 'widget-type) | |
1760 :custom-show (lambda (widget value) | |
1761 (let ((pp (pp-to-string value))) | |
1762 (cond ((string-match "\n" pp) | |
1763 nil) | |
1764 ((> (length pp) 40) | |
1765 nil) | |
1766 (t t))))) | |
1767 (widget-put (get 'menu-choice 'widget-type) :custom-show t) | |
1768 | |
1769 ;;; The `custom-manual' Widget. | |
1770 | |
1771 (define-widget 'custom-manual 'info-link | |
1772 "Link to the manual entry for this customization option." | |
1773 :help-echo "Read the manual entry for this option." | |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
1774 :button-face 'custom-link |
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
1775 :mouse-face 'highlight |
68892
93b583aac002
* wid-edit.el (widget-button-click): Use :pressed-face property
Chong Yidong <cyd@stupidchicken.com>
parents:
68406
diff
changeset
|
1776 :pressed-face 'highlight |
17334 | 1777 :tag "Manual") |
1778 | |
1779 ;;; The `custom-magic' Widget. | |
1780 | |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1781 (defgroup custom-magic-faces nil |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1782 "Faces used by the magic button." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1783 :group 'custom-faces |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1784 :group 'custom-buffer) |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1785 |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1786 (defface custom-invalid '((((class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1787 (:foreground "yellow1" :background "red1")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1788 (t |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1789 (:weight bold :slant italic :underline t))) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1790 "Face used when the customize item is invalid." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1791 :group 'custom-magic-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1792 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1793 (put 'custom-invalid-face 'face-alias 'custom-invalid) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1794 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1795 (defface custom-rogue '((((class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1796 (:foreground "pink" :background "black")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1797 (t |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1798 (:underline t))) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1799 "Face used when the customize item is not defined for customization." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1800 :group 'custom-magic-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1801 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1802 (put 'custom-rogue-face 'face-alias 'custom-rogue) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1803 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1804 (defface custom-modified '((((min-colors 88) (class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1805 (:foreground "white" :background "blue1")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1806 (((class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1807 (:foreground "white" :background "blue")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1808 (t |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1809 (:slant italic :bold))) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1810 "Face used when the customize item has been modified." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1811 :group 'custom-magic-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1812 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1813 (put 'custom-modified-face 'face-alias 'custom-modified) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1814 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1815 (defface custom-set '((((min-colors 88) (class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1816 (:foreground "blue1" :background "white")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1817 (((class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1818 (:foreground "blue" :background "white")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1819 (t |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1820 (:slant italic))) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1821 "Face used when the customize item has been set." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1822 :group 'custom-magic-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1823 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1824 (put 'custom-set-face 'face-alias 'custom-set) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1825 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1826 (defface custom-changed '((((min-colors 88) (class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1827 (:foreground "white" :background "blue1")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1828 (((class color)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1829 (:foreground "white" :background "blue")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1830 (t |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1831 (:slant italic))) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1832 "Face used when the customize item has been changed." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1833 :group 'custom-magic-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1834 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1835 (put 'custom-changed-face 'face-alias 'custom-changed) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1836 |
67783
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1837 (defface custom-themed '((((min-colors 88) (class color)) |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1838 (:foreground "white" :background "blue1")) |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1839 (((class color)) |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1840 (:foreground "white" :background "blue")) |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1841 (t |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1842 (:slant italic))) |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1843 "Face used when the customize item has been set by a theme." |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1844 :group 'custom-magic-faces) |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1845 |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1846 (defface custom-saved '((t (:underline t))) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1847 "Face used when the customize item has been saved." |
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1848 :group 'custom-magic-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1849 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1850 (put 'custom-saved-face 'face-alias 'custom-saved) |
17334 | 1851 |
58940
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
1852 (defconst custom-magic-alist |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
1853 '((nil "#" underline "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1854 UNINITIALIZED, you should not see this.") |
58940
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
1855 (unknown "?" italic "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1856 UNKNOWN, you should not see this.") |
58940
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
1857 (hidden "-" default "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1858 HIDDEN, invoke \"Show\" in the previous line to show." "\ |
18362
4655515f51cc
(custom-magic-alist) <hidden>: Don't refer to "dots".
Richard M. Stallman <rms@gnu.org>
parents:
18360
diff
changeset
|
1859 group now hidden, invoke \"Show\", above, to show contents.") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1860 (invalid "x" custom-invalid "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1861 INVALID, the displayed value cannot be set.") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1862 (modified "*" custom-modified "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1863 EDITED, shown value does not take effect until you set or save it." "\ |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
1864 something in this group has been edited but not set.") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1865 (set "+" custom-set "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1866 SET for current session only." "\ |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
1867 something in this group has been set but not saved.") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1868 (changed ":" custom-changed "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1869 CHANGED outside Customize; operating on it here may be unreliable." "\ |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1870 something in this group has been changed outside customize.") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1871 (saved "!" custom-saved "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1872 SAVED and set." "\ |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1873 something in this group has been set and saved.") |
67783
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1874 (themed "o" custom-themed "\ |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1875 THEMED." "\ |
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
1876 visible group members are all at standard values.") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
1877 (rogue "@" custom-rogue "\ |
67600
d14352717f67
Introductory comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
67549
diff
changeset
|
1878 NO CUSTOMIZATION DATA; not intended to be customized." "\ |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1879 something in this group is not prepared for customization.") |
58940
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
1880 (standard " " nil "\ |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1881 STANDARD." "\ |
67749
1607dd4159f5
(custom-reset-menu, custom-magic-alist, Custom-mode-menu):
Richard M. Stallman <rms@gnu.org>
parents:
67747
diff
changeset
|
1882 visible group members are all at standard values.")) |
17334 | 1883 "Alist of customize option states. |
25685 | 1884 Each entry is of the form (STATE MAGIC FACE ITEM-DESC [ GROUP-DESC ]), where |
17334 | 1885 |
1886 STATE is one of the following symbols: | |
1887 | |
1888 `nil' | |
1889 For internal use, should never occur. | |
1890 `unknown' | |
1891 For internal use, should never occur. | |
1892 `hidden' | |
25685 | 1893 This item is not being displayed. |
17334 | 1894 `invalid' |
1895 This item is modified, but has an invalid form. | |
1896 `modified' | |
1897 This item is modified, and has a valid form. | |
1898 `set' | |
1899 This item has been set but not saved. | |
1900 `changed' | |
60295
53b5914886cc
(custom-buffer-create-internal): Slightly reword text at top of Custom
Luc Teirlinck <teirllm@auburn.edu>
parents:
60280
diff
changeset
|
1901 The current value of this item has been changed outside Customize. |
17334 | 1902 `saved' |
1903 This item is marked for saving. | |
1904 `rogue' | |
1905 This item has no customization information. | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1906 `standard' |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1907 This item is unchanged from the standard setting. |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1908 |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1909 MAGIC is a string used to present that state. |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1910 |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1911 FACE is a face used to present the state. |
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1912 |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1913 ITEM-DESC is a string describing the state for options. |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
1914 |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1915 GROUP-DESC is a string describing the state for groups. If this is |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1916 left out, ITEM-DESC will be used. |
17334 | 1917 |
18089 | 1918 The string %c in either description will be replaced with the |
1919 category of the item. These are `group'. `option', and `face'. | |
1920 | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1921 The list should be sorted most significant first.") |
17334 | 1922 |
1923 (defcustom custom-magic-show 'long | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
1924 "If non-nil, show textual description of the state. |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1925 If `long', show a full-line description, not just one word." |
17334 | 1926 :type '(choice (const :tag "no" nil) |
22600
2f3b4c74e9a1
(custom-magic-show): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
22538
diff
changeset
|
1927 (const long) |
2f3b4c74e9a1
(custom-magic-show): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
22538
diff
changeset
|
1928 (other :tag "short" short)) |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1929 :group 'custom-buffer) |
17334 | 1930 |
18089 | 1931 (defcustom custom-magic-show-hidden '(option face) |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1932 "Control whether the State button is shown for hidden items. |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1933 The value should be a list with the custom categories where the State |
18089 | 1934 button should be visible. Possible categories are `group', `option', |
1935 and `face'." | |
1936 :type '(set (const group) (const option) (const face)) | |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1937 :group 'custom-buffer) |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
1938 |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1939 (defcustom custom-magic-show-button nil |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1940 "Show a \"magic\" button indicating the state of each customization option." |
17334 | 1941 :type 'boolean |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
1942 :group 'custom-buffer) |
17334 | 1943 |
1944 (define-widget 'custom-magic 'default | |
1945 "Show and manipulate state for a customization option." | |
1946 :format "%v" | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1947 :action 'widget-parent-action |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
1948 :notify 'ignore |
17334 | 1949 :value-get 'ignore |
1950 :value-create 'custom-magic-value-create | |
1951 :value-delete 'widget-children-value-delete) | |
1952 | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1953 (defun widget-magic-mouse-down-action (widget &optional event) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1954 ;; Non-nil unless hidden. |
25685 | 1955 (not (eq (widget-get (widget-get (widget-get widget :parent) :parent) |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1956 :custom-state) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1957 'hidden))) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1958 |
17334 | 1959 (defun custom-magic-value-create (widget) |
28130 | 1960 "Create compact status report for WIDGET." |
17334 | 1961 (let* ((parent (widget-get widget :parent)) |
1962 (state (widget-get parent :custom-state)) | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
1963 (hidden (eq state 'hidden)) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1964 (entry (assq state custom-magic-alist)) |
17334 | 1965 (magic (nth 1 entry)) |
1966 (face (nth 2 entry)) | |
18089 | 1967 (category (widget-get parent :custom-category)) |
1968 (text (or (and (eq category 'group) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1969 (nth 4 entry)) |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1970 (nth 3 entry))) |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
1971 (form (widget-get parent :custom-form)) |
17334 | 1972 children) |
18089 | 1973 (while (string-match "\\`\\(.*\\)%c\\(.*\\)\\'" text) |
25685 | 1974 (setq text (concat (match-string 1 text) |
18089 | 1975 (symbol-name category) |
1976 (match-string 2 text)))) | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
1977 (when (and custom-magic-show |
18089 | 1978 (or (not hidden) |
1979 (memq category custom-magic-show-hidden))) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1980 (insert " ") |
18367
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
1981 (when (and (eq category 'group) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
1982 (not (and (eq custom-buffer-style 'links) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
1983 (> (widget-get parent :custom-level) 1)))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1984 (insert-char ?\ (* custom-buffer-indent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
1985 (widget-get parent :custom-level)))) |
25685 | 1986 (push (widget-create-child-and-convert |
1987 widget 'choice-item | |
18087 | 1988 :help-echo "Change the state of this item." |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
1989 :format (if hidden "%t" "%[%t%]") |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1990 :button-prefix 'widget-push-button-prefix |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
1991 :button-suffix 'widget-push-button-suffix |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1992 :mouse-down-action 'widget-magic-mouse-down-action |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
1993 :tag "State") |
17334 | 1994 children) |
1995 (insert ": ") | |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1996 (let ((start (point))) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1997 (if (eq custom-magic-show 'long) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1998 (insert text) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
1999 (insert (symbol-name state))) |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2000 (cond ((eq form 'lisp) |
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2001 (insert " (lisp)")) |
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2002 ((eq form 'mismatch) |
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2003 (insert " (mismatch)"))) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2004 (put-text-property start (point) 'face 'custom-state)) |
17334 | 2005 (insert "\n")) |
18367
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
2006 (when (and (eq category 'group) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
2007 (not (and (eq custom-buffer-style 'links) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
2008 (> (widget-get parent :custom-level) 1)))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2009 (insert-char ?\ (* custom-buffer-indent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2010 (widget-get parent :custom-level)))) |
17334 | 2011 (when custom-magic-show-button |
2012 (when custom-magic-show | |
2013 (let ((indent (widget-get parent :indent))) | |
2014 (when indent | |
2015 (insert-char ? indent)))) | |
25685 | 2016 (push (widget-create-child-and-convert |
2017 widget 'choice-item | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2018 :mouse-down-action 'widget-magic-mouse-down-action |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2019 :button-face face |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2020 :button-prefix "" |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2021 :button-suffix "" |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2022 :help-echo "Change the state." |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2023 :format (if hidden "%t" "%[%t%]") |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2024 :tag (if (memq form '(lisp mismatch)) |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2025 (concat "(" magic ")") |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2026 (concat "[" magic "]"))) |
17334 | 2027 children) |
2028 (insert " ")) | |
2029 (widget-put widget :children children))) | |
2030 | |
2031 (defun custom-magic-reset (widget) | |
2032 "Redraw the :custom-magic property of WIDGET." | |
2033 (let ((magic (widget-get widget :custom-magic))) | |
2034 (widget-value-set magic (widget-value magic)))) | |
2035 | |
2036 ;;; The `custom' Widget. | |
2037 | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2038 (defface custom-button |
32883
105ad8d20e29
(custom-button-face, custom-button-pressed-face): Merge x w32 and mac
Jason Rumney <jasonr@gnu.org>
parents:
32752
diff
changeset
|
2039 '((((type x w32 mac) (class color)) ; Like default modeline |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31744
diff
changeset
|
2040 (:box (:line-width 2 :style released-button) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31744
diff
changeset
|
2041 :background "lightgrey" :foreground "black")) |
25685 | 2042 (t |
2043 nil)) | |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2044 "Face for custom buffer buttons if `custom-raised-buttons' is non-nil." |
25685 | 2045 :version "21.1" |
2046 :group 'custom-faces) | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2047 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2048 (put 'custom-button-face 'face-alias 'custom-button) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2049 |
67961
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2050 (defface custom-button-mouse |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2051 '((((type x w32 mac) (class color)) |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2052 (:box (:line-width 2 :style released-button) |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2053 :background "grey90" :foreground "black")) |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2054 (t |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2055 nil)) |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2056 "Mouse face for custom buffer buttons if `custom-raised-buttons' is non-nil." |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2057 :version "22.1" |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2058 :group 'custom-faces) |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2059 |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2060 (defface custom-button-unraised |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
2061 '((t :inherit underline)) |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2062 "Face for custom buffer buttons if `custom-raised-buttons' is nil." |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2063 :version "22.1" |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2064 :group 'custom-faces) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2065 |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2066 (setq custom-button |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2067 (if custom-raised-buttons 'custom-button 'custom-button-unraised)) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2068 |
67961
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2069 (setq custom-button-mouse |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2070 (if custom-raised-buttons 'custom-button-mouse 'highlight)) |
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
2071 |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2072 (defface custom-button-pressed |
32883
105ad8d20e29
(custom-button-face, custom-button-pressed-face): Merge x w32 and mac
Jason Rumney <jasonr@gnu.org>
parents:
32752
diff
changeset
|
2073 '((((type x w32 mac) (class color)) |
32752
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31744
diff
changeset
|
2074 (:box (:line-width 2 :style pressed-button) |
923b8d6d8277
Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents:
31744
diff
changeset
|
2075 :background "lightgrey" :foreground "black")) |
25685 | 2076 (t |
2077 (:inverse-video t))) | |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2078 "Face for pressed custom buttons if `custom-raised-buttons' is non-nil." |
25685 | 2079 :version "21.1" |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2080 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2081 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2082 (put 'custom-button-pressed-face 'face-alias 'custom-button-pressed) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2083 |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2084 (defface custom-button-pressed-unraised |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2085 '((default :inherit custom-button-unraised) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2086 (((class color) (background light)) :foreground "magenta4") |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2087 (((class color) (background dark)) :foreground "violet")) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2088 "Face for pressed custom buttons if `custom-raised-buttons' is nil." |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2089 :version "22.1" |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2090 :group 'custom-faces) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2091 |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2092 (setq custom-button-pressed |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2093 (if custom-raised-buttons |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2094 'custom-button-pressed |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2095 'custom-button-pressed-unraised)) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
2096 |
70179
bdc0573597a9
(custom-documentation): Avoid nil spec in defface.
Luc Teirlinck <teirllm@auburn.edu>
parents:
70021
diff
changeset
|
2097 (defface custom-documentation '((t nil)) |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2098 "Face used for documentation strings in customization buffers." |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2099 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2100 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2101 (put 'custom-documentation-face 'face-alias 'custom-documentation) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2102 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2103 (defface custom-state '((((class color) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2104 (background dark)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2105 (:foreground "lime green")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2106 (((class color) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2107 (background light)) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2108 (:foreground "dark green")) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2109 (t nil)) |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2110 "Face used for State descriptions in the customize buffer." |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2111 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2112 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2113 (put 'custom-state-face 'face-alias 'custom-state) |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2114 |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
2115 (defface custom-link |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
2116 '((t :inherit link)) |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
2117 "Face for links in customization buffers." |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
2118 :version "22.1" |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
2119 :group 'custom-faces) |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
2120 |
17334 | 2121 (define-widget 'custom 'default |
2122 "Customize a user option." | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2123 :format "%v" |
17334 | 2124 :convert-widget 'custom-convert-widget |
2125 :notify 'custom-notify | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2126 :custom-prefix "" |
17334 | 2127 :custom-level 1 |
2128 :custom-state 'hidden | |
2129 :documentation-property 'widget-subclass-responsibility | |
2130 :value-create 'widget-subclass-responsibility | |
2131 :value-delete 'widget-children-value-delete | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2132 :value-get 'widget-value-value-get |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2133 :validate 'widget-children-validate |
17334 | 2134 :match (lambda (widget value) (symbolp value))) |
2135 | |
2136 (defun custom-convert-widget (widget) | |
28130 | 2137 "Initialize :value and :tag from :args in WIDGET." |
17334 | 2138 (let ((args (widget-get widget :args))) |
25685 | 2139 (when args |
17334 | 2140 (widget-put widget :value (widget-apply widget |
2141 :value-to-internal (car args))) | |
2142 (widget-put widget :tag (custom-unlispify-tag-name (car args))) | |
2143 (widget-put widget :args nil))) | |
2144 widget) | |
2145 | |
2146 (defun custom-notify (widget &rest args) | |
2147 "Keep track of changes." | |
18090 | 2148 (let ((state (widget-get widget :custom-state))) |
2149 (unless (eq state 'modified) | |
2150 (unless (memq state '(nil unknown hidden)) | |
2151 (widget-put widget :custom-state 'modified)) | |
2152 (custom-magic-reset widget) | |
2153 (apply 'widget-default-notify widget args)))) | |
17334 | 2154 |
2155 (defun custom-redraw (widget) | |
2156 "Redraw WIDGET with current settings." | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2157 (let ((line (count-lines (point-min) (point))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2158 (column (current-column)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2159 (pos (point)) |
17334 | 2160 (from (marker-position (widget-get widget :from))) |
2161 (to (marker-position (widget-get widget :to)))) | |
2162 (save-excursion | |
2163 (widget-value-set widget (widget-value widget)) | |
2164 (custom-redraw-magic widget)) | |
2165 (when (and (>= pos from) (<= pos to)) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2166 (condition-case nil |
25685 | 2167 (progn |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2168 (if (> column 0) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2169 (goto-line line) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2170 (goto-line (1+ line))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2171 (move-to-column column)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2172 (error nil))))) |
17334 | 2173 |
2174 (defun custom-redraw-magic (widget) | |
2175 "Redraw WIDGET state with current settings." | |
25685 | 2176 (while widget |
17334 | 2177 (let ((magic (widget-get widget :custom-magic))) |
25685 | 2178 (cond (magic |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2179 (widget-value-set magic (widget-value magic)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2180 (when (setq widget (widget-get widget :group)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2181 (custom-group-state-update widget))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2182 (t |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2183 (setq widget nil))))) |
17334 | 2184 (widget-setup)) |
2185 | |
2186 (defun custom-show (widget value) | |
2187 "Non-nil if WIDGET should be shown with VALUE by default." | |
2188 (let ((show (widget-get widget :custom-show))) | |
2189 (cond ((null show) | |
2190 nil) | |
2191 ((eq t show) | |
2192 t) | |
2193 (t | |
2194 (funcall show widget value))))) | |
2195 | |
2196 (defun custom-load-widget (widget) | |
2197 "Load all dependencies for WIDGET." | |
2198 (custom-load-symbol (widget-value widget))) | |
2199 | |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2200 (defun custom-unloaded-symbol-p (symbol) |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
2201 "Return non-nil if the dependencies of SYMBOL have not yet been loaded." |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2202 (let ((found nil) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2203 (loads (get symbol 'custom-loads)) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2204 load) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2205 (while loads |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2206 (setq load (car loads) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2207 loads (cdr loads)) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2208 (cond ((symbolp load) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2209 (unless (featurep load) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2210 (setq found t))) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2211 ((assoc load load-history)) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2212 ((assoc (locate-library load) load-history) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2213 (message nil)) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2214 (t |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2215 (setq found t)))) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2216 found)) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2217 |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2218 (defun custom-unloaded-widget-p (widget) |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
2219 "Return non-nil if the dependencies of WIDGET have not yet been loaded." |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2220 (custom-unloaded-symbol-p (widget-value widget))) |
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2221 |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2222 (defun custom-toggle-hide (widget) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2223 "Toggle visibility of WIDGET." |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2224 (custom-load-widget widget) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2225 (let ((state (widget-get widget :custom-state))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2226 (cond ((memq state '(invalid modified)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2227 (error "There are unset changes")) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2228 ((eq state 'hidden) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2229 (widget-put widget :custom-state 'unknown)) |
25685 | 2230 (t |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2231 (widget-put widget :documentation-shown nil) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2232 (widget-put widget :custom-state 'hidden))) |
18258
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18244
diff
changeset
|
2233 (custom-redraw widget) |
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18244
diff
changeset
|
2234 (widget-setup))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2235 |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2236 (defun custom-toggle-parent (widget &rest ignore) |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2237 "Toggle visibility of parent of WIDGET." |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2238 (custom-toggle-hide (widget-get widget :parent))) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2239 |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2240 (defun custom-add-see-also (widget &optional prefix) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2241 "Add `See also ...' to WIDGET if there are any links. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2242 Insert PREFIX first if non-nil." |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2243 (let* ((symbol (widget-get widget :value)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2244 (links (get symbol 'custom-links)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2245 (many (> (length links) 2)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2246 (buttons (widget-get widget :buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2247 (indent (widget-get widget :indent))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2248 (when links |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2249 (when indent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2250 (insert-char ?\ indent)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2251 (when prefix |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2252 (insert prefix)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2253 (insert "See also ") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2254 (while links |
68178
08dc54e52e8e
(custom-add-see-also, custom-add-parent-links): Make sure the links use
Eli Zaretskii <eliz@gnu.org>
parents:
68139
diff
changeset
|
2255 (push (widget-create-child-and-convert |
08dc54e52e8e
(custom-add-see-also, custom-add-parent-links): Make sure the links use
Eli Zaretskii <eliz@gnu.org>
parents:
68139
diff
changeset
|
2256 widget (car links) |
08dc54e52e8e
(custom-add-see-also, custom-add-parent-links): Make sure the links use
Eli Zaretskii <eliz@gnu.org>
parents:
68139
diff
changeset
|
2257 :button-face 'custom-link |
68892
93b583aac002
* wid-edit.el (widget-button-click): Use :pressed-face property
Chong Yidong <cyd@stupidchicken.com>
parents:
68406
diff
changeset
|
2258 :mouse-face 'highlight |
93b583aac002
* wid-edit.el (widget-button-click): Use :pressed-face property
Chong Yidong <cyd@stupidchicken.com>
parents:
68406
diff
changeset
|
2259 :pressed-face 'highlight) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2260 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2261 (setq links (cdr links)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2262 (cond ((null links) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2263 (insert ".\n")) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2264 ((null (cdr links)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2265 (if many |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2266 (insert ", and ") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2267 (insert " and "))) |
25685 | 2268 (t |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2269 (insert ", ")))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2270 (widget-put widget :buttons buttons)))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2271 |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
2272 (defun custom-add-parent-links (widget &optional initial-string) |
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
2273 "Add \"Parent groups: ...\" to WIDGET if the group has parents. |
66904
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2274 The value is non-nil if any parents were found. |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
2275 If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"." |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2276 (let ((name (widget-value widget)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2277 (type (widget-type widget)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2278 (buttons (widget-get widget :buttons)) |
18370
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
2279 (start (point)) |
53223
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2280 (parents nil)) |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
2281 (insert (or initial-string "Parent groups:")) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2282 (mapatoms (lambda (symbol) |
66904
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2283 (when (member (list name type) (get symbol 'custom-group)) |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2284 (insert " ") |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2285 (push (widget-create-child-and-convert |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2286 widget 'custom-group-link |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2287 :tag (custom-unlispify-tag-name symbol) |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2288 symbol) |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2289 buttons) |
b39a51cbc6b6
(custom-add-parent-links): Fix bug whereby, for instance,
Luc Teirlinck <teirllm@auburn.edu>
parents:
66859
diff
changeset
|
2290 (setq parents (cons symbol parents))))) |
54721
5b50970ffa95
2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
54312
diff
changeset
|
2291 (and (null (get name 'custom-links)) ;No links of its own. |
53223
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2292 (= (length parents) 1) ;A single parent. |
67378
3fe860e6e6eb
(custom-add-parent-links): Filter out custom-group-link,
Juri Linkov <juri@jurta.org>
parents:
67298
diff
changeset
|
2293 (let* ((links (delq nil (mapcar (lambda (w) |
3fe860e6e6eb
(custom-add-parent-links): Filter out custom-group-link,
Juri Linkov <juri@jurta.org>
parents:
67298
diff
changeset
|
2294 (unless (eq (widget-type w) |
3fe860e6e6eb
(custom-add-parent-links): Filter out custom-group-link,
Juri Linkov <juri@jurta.org>
parents:
67298
diff
changeset
|
2295 'custom-group-link) |
3fe860e6e6eb
(custom-add-parent-links): Filter out custom-group-link,
Juri Linkov <juri@jurta.org>
parents:
67298
diff
changeset
|
2296 w)) |
3fe860e6e6eb
(custom-add-parent-links): Filter out custom-group-link,
Juri Linkov <juri@jurta.org>
parents:
67298
diff
changeset
|
2297 (get (car parents) 'custom-links)))) |
53319
36b31fc002f2
2003-12-12 Jesper Harder <harder@ifa.au.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
53223
diff
changeset
|
2298 (many (> (length links) 2))) |
53223
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2299 (when links |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2300 (insert "\nParent documentation: ") |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2301 (while links |
68178
08dc54e52e8e
(custom-add-see-also, custom-add-parent-links): Make sure the links use
Eli Zaretskii <eliz@gnu.org>
parents:
68139
diff
changeset
|
2302 (push (widget-create-child-and-convert |
08dc54e52e8e
(custom-add-see-also, custom-add-parent-links): Make sure the links use
Eli Zaretskii <eliz@gnu.org>
parents:
68139
diff
changeset
|
2303 widget (car links) |
08dc54e52e8e
(custom-add-see-also, custom-add-parent-links): Make sure the links use
Eli Zaretskii <eliz@gnu.org>
parents:
68139
diff
changeset
|
2304 :button-face 'custom-link |
68892
93b583aac002
* wid-edit.el (widget-button-click): Use :pressed-face property
Chong Yidong <cyd@stupidchicken.com>
parents:
68406
diff
changeset
|
2305 :mouse-face 'highlight |
93b583aac002
* wid-edit.el (widget-button-click): Use :pressed-face property
Chong Yidong <cyd@stupidchicken.com>
parents:
68406
diff
changeset
|
2306 :pressed-face 'highlight) |
53223
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2307 buttons) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2308 (setq links (cdr links)) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2309 (cond ((null links) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2310 (insert ".\n")) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2311 ((null (cdr links)) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2312 (if many |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2313 (insert ", and ") |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2314 (insert " and "))) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2315 (t |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2316 (insert ", "))))))) |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2317 (if parents |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2318 (insert "\n") |
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2319 (delete-region start (point))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2320 (widget-put widget :buttons buttons) |
53223
1fa5a4fc03e5
2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
52401
diff
changeset
|
2321 parents)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2322 |
25685 | 2323 ;;; The `custom-comment' Widget. |
2324 | |
2325 ;; like the editable field | |
68109
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2326 (defface custom-comment '((((type tty)) |
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2327 :background "yellow3" |
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2328 :foreground "black") |
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2329 (((class grayscale color) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2330 (background light)) |
68109
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2331 :background "gray85") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2332 (((class grayscale color) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2333 (background dark)) |
68109
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2334 :background "dim gray") |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2335 (t |
68109
d42505f2ff8c
(custom-comment) <defface>: Add TTY definitions.
John Paul Wallington <jpw@pobox.com>
parents:
68086
diff
changeset
|
2336 :slant italic)) |
25685 | 2337 "Face used for comments on variables or faces" |
2338 :version "21.1" | |
2339 :group 'custom-faces) | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2340 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2341 (put 'custom-comment-face 'face-alias 'custom-comment) |
25685 | 2342 |
2343 ;; like font-lock-comment-face | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2344 (defface custom-comment-tag |
25685 | 2345 '((((class color) (background dark)) (:foreground "gray80")) |
2346 (((class color) (background light)) (:foreground "blue4")) | |
2347 (((class grayscale) (background light)) | |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
2348 (:foreground "DimGray" :weight bold :slant italic)) |
25685 | 2349 (((class grayscale) (background dark)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
2350 (:foreground "LightGray" :weight bold :slant italic)) |
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
2351 (t (:weight bold))) |
25685 | 2352 "Face used for variables or faces comment tags" |
2353 :group 'custom-faces) | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2354 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2355 (put 'custom-comment-tag-face 'face-alias 'custom-comment-tag) |
25685 | 2356 |
2357 (define-widget 'custom-comment 'string | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2358 "User comment." |
25685 | 2359 :tag "Comment" |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2360 :help-echo "Edit a comment here." |
25685 | 2361 :sample-face 'custom-comment-tag-face |
2362 :value-face 'custom-comment-face | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2363 :shown nil |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2364 :create 'custom-comment-create) |
25685 | 2365 |
2366 (defun custom-comment-create (widget) | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2367 (let* ((null-comment (equal "" (widget-value widget)))) |
25847
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2368 (if (or (widget-get (widget-get widget :parent) :comment-shown) |
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2369 (not null-comment)) |
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2370 (widget-default-create widget) |
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2371 ;; `widget-default-delete' expects markers in these slots -- |
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2372 ;; maybe it shouldn't. |
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2373 (widget-put widget :from (point-marker)) |
f54121af02c8
(custom-comment-create): Fill :from and :to slots
Dave Love <fx@gnu.org>
parents:
25840
diff
changeset
|
2374 (widget-put widget :to (point-marker))))) |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2375 |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2376 (defun custom-comment-hide (widget) |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2377 (widget-put (widget-get widget :parent) :comment-shown nil)) |
25685 | 2378 |
2379 ;; Those functions are for the menu. WIDGET is NOT the comment widget. It's | |
2380 ;; the global custom one | |
2381 (defun custom-comment-show (widget) | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2382 (widget-put widget :comment-shown t) |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2383 (custom-redraw widget) |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2384 (widget-setup)) |
25685 | 2385 |
2386 (defun custom-comment-invisible-p (widget) | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2387 (let ((val (widget-value (widget-get widget :comment-widget)))) |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2388 (and (equal "" val) |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2389 (not (widget-get widget :comment-shown))))) |
25685 | 2390 |
17334 | 2391 ;;; The `custom-variable' Widget. |
2392 | |
28130 | 2393 ;; When this was underlined blue, users confused it with a |
2394 ;; Mosaic-style hyperlink... | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2395 (defface custom-variable-tag |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
2396 `((((class color) |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
2397 (background dark)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
2398 (:foreground "light blue" :weight bold :height 1.2 :inherit variable-pitch)) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
2399 (((min-colors 88) (class color) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
2400 (background light)) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
2401 (:foreground "blue1" :weight bold :height 1.2 :inherit variable-pitch)) |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
2402 (((class color) |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
2403 (background light)) |
63249
32b12a7e7c4f
(minibuffer): Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
63194
diff
changeset
|
2404 (:foreground "blue" :weight bold :height 1.2 :inherit variable-pitch)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
2405 (t (:weight bold))) |
17334 | 2406 "Face used for unpushable variable tags." |
17415 | 2407 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2408 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2409 (put 'custom-variable-tag-face 'face-alias 'custom-variable-tag) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2410 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2411 (defface custom-variable-button '((t (:underline t :weight bold))) |
17334 | 2412 "Face used for pushable variable tags." |
17415 | 2413 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2414 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
2415 (put 'custom-variable-button-face 'face-alias 'custom-variable-button) |
17334 | 2416 |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2417 (defcustom custom-variable-default-form 'edit |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2418 "Default form of displaying variable values." |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2419 :type '(choice (const edit) |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2420 (const lisp)) |
21669
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21649
diff
changeset
|
2421 :group 'custom-buffer |
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21649
diff
changeset
|
2422 :version "20.3") |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2423 |
56161
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2424 (defun custom-variable-documentation (variable) |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2425 "Return documentation of VARIABLE for use in Custom buffer. |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2426 Normally just return the docstring. But if VARIABLE automatically |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2427 becomes buffer local when set, append a message to that effect." |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2428 (if (and (local-variable-if-set-p variable) |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2429 (or (not (local-variable-p variable)) |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2430 (with-temp-buffer |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2431 (local-variable-if-set-p variable)))) |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2432 (concat (documentation-property variable 'variable-documentation) |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2433 "\n |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2434 This variable automatically becomes buffer-local when set outside Custom. |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2435 However, setting it through Custom sets the default value.") |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2436 (documentation-property variable 'variable-documentation))) |
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2437 |
17334 | 2438 (define-widget 'custom-variable 'custom |
2439 "Customize variable." | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2440 :format "%v" |
17334 | 2441 :help-echo "Set or reset this variable." |
56161
a8ce8bdfcee6
(custom-variable-documentation): New function.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55944
diff
changeset
|
2442 :documentation-property #'custom-variable-documentation |
18089 | 2443 :custom-category 'option |
17334 | 2444 :custom-state nil |
2445 :custom-menu 'custom-variable-menu-create | |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2446 :custom-form nil ; defaults to value of `custom-variable-default-form' |
17334 | 2447 :value-create 'custom-variable-value-create |
2448 :action 'custom-variable-action | |
2449 :custom-set 'custom-variable-set | |
2450 :custom-save 'custom-variable-save | |
2451 :custom-reset-current 'custom-redraw | |
2452 :custom-reset-saved 'custom-variable-reset-saved | |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2453 :custom-reset-standard 'custom-variable-reset-standard |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2454 :custom-standard-value 'custom-variable-standard-value) |
17334 | 2455 |
17415 | 2456 (defun custom-variable-type (symbol) |
2457 "Return a widget suitable for editing the value of SYMBOL. | |
25685 | 2458 If SYMBOL has a `custom-type' property, use that. |
17415 | 2459 Otherwise, look up symbol in `custom-guess-type-alist'." |
2460 (let* ((type (or (get symbol 'custom-type) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2461 (and (not (get symbol 'standard-value)) |
17415 | 2462 (custom-guess-type symbol)) |
2463 'sexp)) | |
2464 (options (get symbol 'custom-options)) | |
2465 (tmp (if (listp type) | |
17534
a5cf59eee84b
(custom-variable-type): Use copy-sequence, not copy-list.
Richard M. Stallman <rms@gnu.org>
parents:
17521
diff
changeset
|
2466 (copy-sequence type) |
17415 | 2467 (list type)))) |
2468 (when options | |
2469 (widget-put tmp :options options)) | |
2470 tmp)) | |
2471 | |
17334 | 2472 (defun custom-variable-value-create (widget) |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2473 "Here is where you edit the variable's value." |
17334 | 2474 (custom-load-widget widget) |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2475 (unless (widget-get widget :custom-form) |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
2476 (widget-put widget :custom-form custom-variable-default-form)) |
17334 | 2477 (let* ((buttons (widget-get widget :buttons)) |
2478 (children (widget-get widget :children)) | |
2479 (form (widget-get widget :custom-form)) | |
2480 (state (widget-get widget :custom-state)) | |
2481 (symbol (widget-get widget :value)) | |
2482 (tag (widget-get widget :tag)) | |
17415 | 2483 (type (custom-variable-type symbol)) |
17334 | 2484 (conv (widget-convert type)) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2485 (get (or (get symbol 'custom-get) 'default-value)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2486 (prefix (widget-get widget :custom-prefix)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2487 (last (widget-get widget :custom-last)) |
17334 | 2488 (value (if (default-boundp symbol) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2489 (funcall get symbol) |
17334 | 2490 (widget-get conv :value)))) |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2491 ;; If the widget is new, the child determines whether it is hidden. |
17334 | 2492 (cond (state) |
2493 ((custom-show type value) | |
2494 (setq state 'unknown)) | |
2495 (t | |
2496 (setq state 'hidden))) | |
2497 ;; If we don't know the state, see if we need to edit it in lisp form. | |
2498 (when (eq state 'unknown) | |
2499 (unless (widget-apply conv :match value) | |
2500 ;; (widget-apply (widget-convert type) :match value) | |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2501 (setq form 'mismatch))) |
17334 | 2502 ;; Now we can create the child widget. |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2503 (cond ((eq custom-buffer-style 'tree) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
2504 (insert prefix (if last " `--- " " |--- ")) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2505 (push (widget-create-child-and-convert |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
2506 widget 'custom-browse-variable-tag) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2507 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2508 (insert " " tag "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2509 (widget-put widget :buttons buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2510 ((eq state 'hidden) |
17334 | 2511 ;; Indicate hidden value. |
25685 | 2512 (push (widget-create-child-and-convert |
17334 | 2513 widget 'item |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2514 :format "%{%t%}: " |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2515 :sample-face 'custom-variable-tag-face |
17334 | 2516 :tag tag |
2517 :parent widget) | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2518 buttons) |
25685 | 2519 (push (widget-create-child-and-convert |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2520 widget 'visibility |
18258
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18244
diff
changeset
|
2521 :help-echo "Show the value of this option." |
46580
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
2522 :off "Show Value" |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2523 :action 'custom-toggle-parent |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2524 nil) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2525 buttons)) |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2526 ((memq form '(lisp mismatch)) |
17334 | 2527 ;; In lisp mode edit the saved value when possible. |
2528 (let* ((value (cond ((get symbol 'saved-value) | |
2529 (car (get symbol 'saved-value))) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2530 ((get symbol 'standard-value) |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2531 (car (get symbol 'standard-value))) |
17334 | 2532 ((default-boundp symbol) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2533 (custom-quote (funcall get symbol))) |
17334 | 2534 (t |
2535 (custom-quote (widget-get conv :value)))))) | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2536 (insert (symbol-name symbol) ": ") |
25685 | 2537 (push (widget-create-child-and-convert |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2538 widget 'visibility |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2539 :help-echo "Hide the value of this option." |
46580
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
2540 :on "Hide Value" |
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
2541 :off "Show Value" |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2542 :action 'custom-toggle-parent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2543 t) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2544 buttons) |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2545 (insert " ") |
25685 | 2546 (push (widget-create-child-and-convert |
2547 widget 'sexp | |
17334 | 2548 :button-face 'custom-variable-button-face |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2549 :format "%v" |
17334 | 2550 :tag (symbol-name symbol) |
2551 :parent widget | |
2552 :value value) | |
2553 children))) | |
2554 (t | |
2555 ;; Edit mode. | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2556 (let* ((format (widget-get type :format)) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2557 tag-format value-format) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2558 (unless (string-match ":" format) |
19883
519eab181c36
(custom-face-menu): Use custom-face-save-command. not custom-face-save.
Richard M. Stallman <rms@gnu.org>
parents:
19823
diff
changeset
|
2559 (error "Bad format")) |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2560 (setq tag-format (substring format 0 (match-end 0))) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2561 (setq value-format (substring format (match-end 0))) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2562 (push (widget-create-child-and-convert |
25685 | 2563 widget 'item |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2564 :format tag-format |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2565 :action 'custom-tag-action |
18258
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18244
diff
changeset
|
2566 :help-echo "Change value of this option." |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2567 :mouse-down-action 'custom-tag-mouse-down-action |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2568 :button-face 'custom-variable-button-face |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
2569 :sample-face 'custom-variable-tag-face |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2570 tag) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2571 buttons) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2572 (insert " ") |
25685 | 2573 (push (widget-create-child-and-convert |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2574 widget 'visibility |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2575 :help-echo "Hide the value of this option." |
46580
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
2576 :on "Hide Value" |
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
2577 :off "Show Value" |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2578 :action 'custom-toggle-parent |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2579 t) |
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2580 buttons) |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2581 (push (widget-create-child-and-convert |
25685 | 2582 widget type |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2583 :format value-format |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2584 :value value) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2585 children)))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2586 (unless (eq custom-buffer-style 'tree) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2587 (unless (eq (preceding-char) ?\n) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2588 (widget-insert "\n")) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2589 ;; Create the magic button. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2590 (let ((magic (widget-create-child-and-convert |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2591 widget 'custom-magic nil))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2592 (widget-put widget :custom-magic magic) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2593 (push magic buttons)) |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2594 ;; ### NOTE: this is ugly!!!! I need to update the :buttons property |
25685 | 2595 ;; before the call to `widget-default-format-handler'. Otherwise, I |
2596 ;; loose my current `buttons'. This function shouldn't be called like | |
2597 ;; this anyway. The doc string widget should be added like the others. | |
2598 ;; --dv | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2599 (widget-put widget :buttons buttons) |
46580
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
2600 (insert "\n") |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2601 ;; Insert documentation. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2602 (widget-default-format-handler widget ?h) |
25685 | 2603 |
2604 ;; The comment field | |
2605 (unless (eq state 'hidden) | |
2606 (let* ((comment (get symbol 'variable-comment)) | |
2607 (comment-widget | |
2608 (widget-create-child-and-convert | |
2609 widget 'custom-comment | |
2610 :parent widget | |
2611 :value (or comment "")))) | |
2612 (widget-put widget :comment-widget comment-widget) | |
2613 ;; Don't push it !!! Custom assumes that the first child is the | |
2614 ;; value one. | |
2615 (setq children (append children (list comment-widget))))) | |
2616 ;; Update the rest of the properties properties. | |
2617 (widget-put widget :custom-form form) | |
2618 (widget-put widget :children children) | |
2619 ;; Now update the state. | |
2620 (if (eq state 'hidden) | |
2621 (widget-put widget :custom-state state) | |
2622 (custom-variable-state-set widget)) | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2623 ;; See also. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2624 (unless (eq state 'hidden) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2625 (when (eq (widget-get widget :custom-level) 1) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2626 (custom-add-parent-links widget)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
2627 (custom-add-see-also widget))))) |
17334 | 2628 |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2629 (defun custom-tag-action (widget &rest args) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2630 "Pass :action to first child of WIDGET's parent." |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2631 (apply 'widget-apply (car (widget-get (widget-get widget :parent) :children)) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2632 :action args)) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2633 |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2634 (defun custom-tag-mouse-down-action (widget &rest args) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2635 "Pass :mouse-down-action to first child of WIDGET's parent." |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2636 (apply 'widget-apply (car (widget-get (widget-get widget :parent) :children)) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2637 :mouse-down-action args)) |
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18059
diff
changeset
|
2638 |
17334 | 2639 (defun custom-variable-state-set (widget) |
2640 "Set the state of WIDGET." | |
2641 (let* ((symbol (widget-value widget)) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2642 (get (or (get symbol 'custom-get) 'default-value)) |
17334 | 2643 (value (if (default-boundp symbol) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2644 (funcall get symbol) |
17334 | 2645 (widget-get widget :value))) |
25685 | 2646 (comment (get symbol 'variable-comment)) |
17334 | 2647 tmp |
25685 | 2648 temp |
2649 (state (cond ((progn (setq tmp (get symbol 'customized-value)) | |
2650 (setq temp | |
2651 (get symbol 'customized-variable-comment)) | |
2652 (or tmp temp)) | |
17334 | 2653 (if (condition-case nil |
25685 | 2654 (and (equal value (eval (car tmp))) |
2655 (equal comment temp)) | |
17334 | 2656 (error nil)) |
2657 'set | |
2658 'changed)) | |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2659 ((progn (setq tmp (get symbol 'theme-value)) |
25685 | 2660 (setq temp (get symbol 'saved-variable-comment)) |
2661 (or tmp temp)) | |
17334 | 2662 (if (condition-case nil |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2663 (and (equal comment temp) |
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2664 (equal value |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2665 (eval |
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2666 (car (custom-variable-theme-value |
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2667 symbol))))) |
17334 | 2668 (error nil)) |
67783
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
2669 (cond |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2670 ((eq (caar tmp) 'user) 'saved) |
71953
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2671 ((eq (caar tmp) 'changed) |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2672 (if (condition-case nil |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2673 (and (null comment) |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2674 (equal value |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2675 (eval |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2676 (car (get symbol 'standard-value))))) |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2677 (error nil)) |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2678 ;; The value was originally set outside |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2679 ;; custom, but it was set to the standard |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2680 ;; value (probably an autoloaded defcustom). |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2681 'standard |
2cbf89629cad
(custom-variable-state-set): If the variable was originally set outside
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71847
diff
changeset
|
2682 'changed)) |
67783
118df638c3ff
2005-12-23 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
67749
diff
changeset
|
2683 (t 'themed)) |
17334 | 2684 'changed)) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2685 ((setq tmp (get symbol 'standard-value)) |
17334 | 2686 (if (condition-case nil |
25685 | 2687 (and (equal value (eval (car tmp))) |
2688 (equal comment nil)) | |
17334 | 2689 (error nil)) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2690 'standard |
17334 | 2691 'changed)) |
2692 (t 'rogue)))) | |
2693 (widget-put widget :custom-state state))) | |
2694 | |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2695 (defun custom-variable-standard-value (widget) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2696 (get (widget-value widget) 'standard-value)) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2697 |
25685 | 2698 (defvar custom-variable-menu |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2699 `(("Set for Current Session" custom-variable-set |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
2700 (lambda (widget) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2701 (eq (widget-get widget :custom-state) 'modified))) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2702 ,@(when (or custom-file user-init-file) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2703 '(("Save for Future Sessions" custom-variable-save |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2704 (lambda (widget) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2705 (memq (widget-get widget :custom-state) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2706 '(modified set changed rogue)))))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2707 ("Undo Edits" custom-redraw |
68021
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2708 (lambda (widget) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2709 (and (default-boundp (widget-value widget)) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2710 (memq (widget-get widget :custom-state) '(modified changed))))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2711 ("Reset to Saved" custom-variable-reset-saved |
68021
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2712 (lambda (widget) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2713 (and (or (get (widget-value widget) 'saved-value) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2714 (get (widget-value widget) 'saved-variable-comment)) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2715 (memq (widget-get widget :custom-state) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
2716 '(modified set changed rogue))))) |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
2717 ,@(when (or custom-file user-init-file) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2718 '(("Erase Customization" custom-variable-reset-standard |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
2719 (lambda (widget) |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
2720 (and (get (widget-value widget) 'standard-value) |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
2721 (memq (widget-get widget :custom-state) |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
2722 '(modified set changed saved rogue))))))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2723 ("Set to Backup Value" custom-variable-reset-backup |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2724 (lambda (widget) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2725 (get (widget-value widget) 'backup-value))) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2726 ("---" ignore ignore) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2727 ("Add Comment" custom-comment-show custom-comment-invisible-p) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2728 ("---" ignore ignore) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2729 ("Show Current Value" custom-variable-edit |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2730 (lambda (widget) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2731 (eq (widget-get widget :custom-form) 'lisp))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
2732 ("Show Saved Lisp Expression" custom-variable-edit-lisp |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2733 (lambda (widget) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
2734 (eq (widget-get widget :custom-form) 'edit)))) |
17334 | 2735 "Alist of actions for the `custom-variable' widget. |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2736 Each entry has the form (NAME ACTION FILTER) where NAME is the name of |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2737 the menu entry, ACTION is the function to call on the widget when the |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2738 menu is selected, and FILTER is a predicate which takes a `custom-variable' |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2739 widget as an argument, and returns non-nil if ACTION is valid on that |
26625
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
2740 widget. If FILTER is nil, ACTION is always valid.") |
17334 | 2741 |
2742 (defun custom-variable-action (widget &optional event) | |
2743 "Show the menu for `custom-variable' WIDGET. | |
2744 Optional EVENT is the location for the menu." | |
2745 (if (eq (widget-get widget :custom-state) 'hidden) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2746 (custom-toggle-hide widget) |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2747 (unless (eq (widget-get widget :custom-state) 'modified) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2748 (custom-variable-state-set widget)) |
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
2749 (custom-redraw-magic widget) |
17334 | 2750 (let* ((completion-ignore-case t) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2751 (answer (widget-choose (concat "Operation on " |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2752 (custom-unlispify-tag-name |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2753 (widget-get widget :value))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2754 (custom-menu-filter custom-variable-menu |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2755 widget) |
17334 | 2756 event))) |
2757 (if answer | |
2758 (funcall answer widget))))) | |
2759 | |
2760 (defun custom-variable-edit (widget) | |
2761 "Edit value of WIDGET." | |
2762 (widget-put widget :custom-state 'unknown) | |
2763 (widget-put widget :custom-form 'edit) | |
2764 (custom-redraw widget)) | |
2765 | |
2766 (defun custom-variable-edit-lisp (widget) | |
28130 | 2767 "Edit the Lisp representation of the value of WIDGET." |
17334 | 2768 (widget-put widget :custom-state 'unknown) |
2769 (widget-put widget :custom-form 'lisp) | |
2770 (custom-redraw widget)) | |
2771 | |
2772 (defun custom-variable-set (widget) | |
2773 "Set the current value for the variable being edited by WIDGET." | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2774 (let* ((form (widget-get widget :custom-form)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2775 (state (widget-get widget :custom-state)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2776 (child (car (widget-get widget :children))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2777 (symbol (widget-value widget)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2778 (set (or (get symbol 'custom-set) 'set-default)) |
25685 | 2779 (comment-widget (widget-get widget :comment-widget)) |
2780 (comment (widget-value comment-widget)) | |
2781 val) | |
17334 | 2782 (cond ((eq state 'hidden) |
19883
519eab181c36
(custom-face-menu): Use custom-face-save-command. not custom-face-save.
Richard M. Stallman <rms@gnu.org>
parents:
19823
diff
changeset
|
2783 (error "Cannot set hidden variable")) |
17334 | 2784 ((setq val (widget-apply child :validate)) |
2785 (goto-char (widget-get val :from)) | |
2786 (error "%s" (widget-get val :error))) | |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2787 ((memq form '(lisp mismatch)) |
25685 | 2788 (when (equal comment "") |
2789 (setq comment nil) | |
2790 ;; Make the comment invisible by hand if it's empty | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2791 (custom-comment-hide comment-widget)) |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2792 (custom-variable-backup-value widget) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2793 (custom-push-theme 'theme-value symbol 'user |
67797
7bdbb812b2f9
* custom.el (custom-push-theme): Fix docstring.
Chong Yidong <cyd@stupidchicken.com>
parents:
67793
diff
changeset
|
2794 'set (custom-quote (widget-value child))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2795 (funcall set symbol (eval (setq val (widget-value child)))) |
25685 | 2796 (put symbol 'customized-value (list val)) |
2797 (put symbol 'variable-comment comment) | |
2798 (put symbol 'customized-variable-comment comment)) | |
17334 | 2799 (t |
25685 | 2800 (when (equal comment "") |
2801 (setq comment nil) | |
2802 ;; Make the comment invisible by hand if it's empty | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2803 (custom-comment-hide comment-widget)) |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2804 (custom-variable-backup-value widget) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2805 (custom-push-theme 'theme-value symbol 'user |
67797
7bdbb812b2f9
* custom.el (custom-push-theme): Fix docstring.
Chong Yidong <cyd@stupidchicken.com>
parents:
67793
diff
changeset
|
2806 'set (custom-quote (widget-value child))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2807 (funcall set symbol (setq val (widget-value child))) |
25685 | 2808 (put symbol 'customized-value (list (custom-quote val))) |
2809 (put symbol 'variable-comment comment) | |
2810 (put symbol 'customized-variable-comment comment))) | |
17334 | 2811 (custom-variable-state-set widget) |
2812 (custom-redraw-magic widget))) | |
2813 | |
2814 (defun custom-variable-save (widget) | |
19823
0c1b4a44db76
(custom-variable-save): Fixed doc string.
Richard M. Stallman <rms@gnu.org>
parents:
19822
diff
changeset
|
2815 "Set and save the value for the variable being edited by WIDGET." |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2816 (let* ((form (widget-get widget :custom-form)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2817 (state (widget-get widget :custom-state)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2818 (child (car (widget-get widget :children))) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2819 (symbol (widget-value widget)) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2820 (set (or (get symbol 'custom-set) 'set-default)) |
25685 | 2821 (comment-widget (widget-get widget :comment-widget)) |
2822 (comment (widget-value comment-widget)) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2823 val) |
17334 | 2824 (cond ((eq state 'hidden) |
19883
519eab181c36
(custom-face-menu): Use custom-face-save-command. not custom-face-save.
Richard M. Stallman <rms@gnu.org>
parents:
19823
diff
changeset
|
2825 (error "Cannot set hidden variable")) |
17334 | 2826 ((setq val (widget-apply child :validate)) |
2827 (goto-char (widget-get val :from)) | |
33774
77d48dfb2b29
(custom-buffer-create-internal): Save some consing.
Dave Love <fx@gnu.org>
parents:
33110
diff
changeset
|
2828 (error "Saving %s: %s" symbol (widget-get val :error))) |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
2829 ((memq form '(lisp mismatch)) |
25685 | 2830 (when (equal comment "") |
2831 (setq comment nil) | |
2832 ;; Make the comment invisible by hand if it's empty | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2833 (custom-comment-hide comment-widget)) |
17334 | 2834 (put symbol 'saved-value (list (widget-value child))) |
48949
f216c93c4189
(customize-save-variable): Take themes into account.
Richard M. Stallman <rms@gnu.org>
parents:
48709
diff
changeset
|
2835 (custom-push-theme 'theme-value symbol 'user |
67797
7bdbb812b2f9
* custom.el (custom-push-theme): Fix docstring.
Chong Yidong <cyd@stupidchicken.com>
parents:
67793
diff
changeset
|
2836 'set (custom-quote (widget-value child))) |
25685 | 2837 (funcall set symbol (eval (widget-value child))) |
2838 (put symbol 'variable-comment comment) | |
2839 (put symbol 'saved-variable-comment comment)) | |
17334 | 2840 (t |
25685 | 2841 (when (equal comment "") |
2842 (setq comment nil) | |
2843 ;; Make the comment invisible by hand if it's empty | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2844 (custom-comment-hide comment-widget)) |
25685 | 2845 (put symbol 'saved-value |
2846 (list (custom-quote (widget-value child)))) | |
48949
f216c93c4189
(customize-save-variable): Take themes into account.
Richard M. Stallman <rms@gnu.org>
parents:
48709
diff
changeset
|
2847 (custom-push-theme 'theme-value symbol 'user |
67797
7bdbb812b2f9
* custom.el (custom-push-theme): Fix docstring.
Chong Yidong <cyd@stupidchicken.com>
parents:
67793
diff
changeset
|
2848 'set (custom-quote (widget-value child))) |
25685 | 2849 (funcall set symbol (widget-value child)) |
2850 (put symbol 'variable-comment comment) | |
2851 (put symbol 'saved-variable-comment comment))) | |
17334 | 2852 (put symbol 'customized-value nil) |
25685 | 2853 (put symbol 'customized-variable-comment nil) |
17334 | 2854 (custom-save-all) |
2855 (custom-variable-state-set widget) | |
2856 (custom-redraw-magic widget))) | |
2857 | |
2858 (defun custom-variable-reset-saved (widget) | |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2859 "Restore the saved value for the variable being edited by WIDGET. |
68086
742bf2516c24
(Custom-set, Custom-save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68028
diff
changeset
|
2860 This also updates the buffer to show that value. |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2861 The value that was current before this operation |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2862 becomes the backup value, so you can get it again." |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
2863 (let* ((symbol (widget-value widget)) |
25685 | 2864 (set (or (get symbol 'custom-set) 'set-default)) |
2865 (value (get symbol 'saved-value)) | |
2866 (comment (get symbol 'saved-variable-comment))) | |
2867 (cond ((or value comment) | |
2868 (put symbol 'variable-comment comment) | |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2869 (custom-variable-backup-value widget) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2870 (custom-push-theme 'theme-value symbol 'user 'set (car-safe value)) |
25685 | 2871 (condition-case nil |
2872 (funcall set symbol (eval (car value))) | |
2873 (error nil))) | |
2874 (t | |
2875 (error "No saved value for %s" symbol))) | |
17334 | 2876 (put symbol 'customized-value nil) |
25685 | 2877 (put symbol 'customized-variable-comment nil) |
17334 | 2878 (widget-put widget :custom-state 'unknown) |
25685 | 2879 ;; This call will possibly make the comment invisible |
17334 | 2880 (custom-redraw widget))) |
2881 | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2882 (defun custom-variable-reset-standard (widget) |
26625
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
2883 "Restore the standard setting for the variable being edited by WIDGET. |
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
2884 This operation eliminates any saved setting for the variable, |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2885 restoring it to the state of a variable that has never been customized. |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2886 The value that was current before this operation |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2887 becomes the backup value, so you can get it again." |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2888 (let* ((symbol (widget-value widget))) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
2889 (if (get symbol 'standard-value) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2890 (custom-variable-backup-value widget) |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
2891 (error "No standard setting known for %S" symbol)) |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
2892 (put symbol 'variable-comment nil) |
17334 | 2893 (put symbol 'customized-value nil) |
25685 | 2894 (put symbol 'customized-variable-comment nil) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
2895 (custom-push-theme 'theme-value symbol 'user 'reset) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2896 (custom-theme-recalc-variable symbol) |
25685 | 2897 (when (or (get symbol 'saved-value) (get symbol 'saved-variable-comment)) |
17334 | 2898 (put symbol 'saved-value nil) |
25685 | 2899 (put symbol 'saved-variable-comment nil) |
17334 | 2900 (custom-save-all)) |
2901 (widget-put widget :custom-state 'unknown) | |
25685 | 2902 ;; This call will possibly make the comment invisible |
17334 | 2903 (custom-redraw widget))) |
2904 | |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2905 (defun custom-variable-backup-value (widget) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2906 "Back up the current value for WIDGET's variable. |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2907 The backup value is kept in the car of the `backup-value' property." |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2908 (let* ((symbol (widget-value widget)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2909 (get (or (get symbol 'custom-get) 'default-value)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2910 (type (custom-variable-type symbol)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2911 (conv (widget-convert type)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2912 (value (if (default-boundp symbol) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2913 (funcall get symbol) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2914 (widget-get conv :value)))) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2915 (put symbol 'backup-value (list value)))) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2916 |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2917 (defun custom-variable-reset-backup (widget) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2918 "Restore the backup value for the variable being edited by WIDGET. |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2919 The value that was current before this operation |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2920 becomes the backup value, so you can use this operation repeatedly |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2921 to switch between two values." |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2922 (let* ((symbol (widget-value widget)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2923 (set (or (get symbol 'custom-set) 'set-default)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2924 (value (get symbol 'backup-value)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2925 (comment-widget (widget-get widget :comment-widget)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2926 (comment (widget-value comment-widget))) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2927 (if value |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2928 (progn |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2929 (custom-variable-backup-value widget) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
2930 (custom-push-theme 'theme-value symbol 'user 'set value) |
47503
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2931 (condition-case nil |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2932 (funcall set symbol (car value)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2933 (error nil))) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2934 (error "No backup value for %s" symbol)) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2935 (put symbol 'customized-value (list (car value))) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2936 (put symbol 'variable-comment comment) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2937 (put symbol 'customized-variable-comment comment) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2938 (custom-variable-state-set widget) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2939 ;; This call will possibly make the comment invisible |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2940 (custom-redraw widget))) |
8b3fa993e0ad
(custom-variable-backup-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47315
diff
changeset
|
2941 |
17334 | 2942 ;;; The `custom-face-edit' Widget. |
2943 | |
2944 (define-widget 'custom-face-edit 'checklist | |
2945 "Edit face attributes." | |
2946 :format "%t: %v" | |
2947 :tag "Attributes" | |
58940
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
2948 :extra-offset 13 |
25685 | 2949 :button-args '(:help-echo "Control whether this attribute has any effect.") |
42448
5269e6fd0fbc
(custom-face-edit-fix-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
41606
diff
changeset
|
2950 :value-to-internal 'custom-face-edit-fix-value |
5269e6fd0fbc
(custom-face-edit-fix-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
41606
diff
changeset
|
2951 :match (lambda (widget value) |
49521
c259d8177692
2003-01-29 Didier Verna <didier@xemacs.org>
John Paul Wallington <jpw@pobox.com>
parents:
49300
diff
changeset
|
2952 (widget-checklist-match widget |
42448
5269e6fd0fbc
(custom-face-edit-fix-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
41606
diff
changeset
|
2953 (custom-face-edit-fix-value widget value))) |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2954 :convert-widget 'custom-face-edit-convert-widget |
17334 | 2955 :args (mapcar (lambda (att) |
25685 | 2956 (list 'group |
17334 | 2957 :inline t |
2958 :sibling-args (widget-get (nth 1 att) :sibling-args) | |
25685 | 2959 (list 'const :format "" :value (nth 0 att)) |
17334 | 2960 (nth 1 att))) |
2961 custom-face-attributes)) | |
2962 | |
42448
5269e6fd0fbc
(custom-face-edit-fix-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
41606
diff
changeset
|
2963 (defun custom-face-edit-fix-value (widget value) |
48709
d1efe2b99d8a
(custom-face-edit-fix-value): Change :reverse-video to :inverse-video.
Andreas Schwab <schwab@suse.de>
parents:
48633
diff
changeset
|
2964 "Ignoring WIDGET, convert :bold and :italic in VALUE to new form. |
d1efe2b99d8a
(custom-face-edit-fix-value): Change :reverse-video to :inverse-video.
Andreas Schwab <schwab@suse.de>
parents:
48633
diff
changeset
|
2965 Also change :reverse-video to :inverse-video." |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2966 (if (listp value) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2967 (let (result) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2968 (while value |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2969 (let ((key (car value)) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2970 (val (car (cdr value)))) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2971 (cond ((eq key :italic) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2972 (push :slant result) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2973 (push (if val 'italic 'normal) result)) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2974 ((eq key :bold) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2975 (push :weight result) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2976 (push (if val 'bold 'normal) result)) |
48709
d1efe2b99d8a
(custom-face-edit-fix-value): Change :reverse-video to :inverse-video.
Andreas Schwab <schwab@suse.de>
parents:
48633
diff
changeset
|
2977 ((eq key :reverse-video) |
d1efe2b99d8a
(custom-face-edit-fix-value): Change :reverse-video to :inverse-video.
Andreas Schwab <schwab@suse.de>
parents:
48633
diff
changeset
|
2978 (push :inverse-video result) |
d1efe2b99d8a
(custom-face-edit-fix-value): Change :reverse-video to :inverse-video.
Andreas Schwab <schwab@suse.de>
parents:
48633
diff
changeset
|
2979 (push val result)) |
49521
c259d8177692
2003-01-29 Didier Verna <didier@xemacs.org>
John Paul Wallington <jpw@pobox.com>
parents:
49300
diff
changeset
|
2980 (t |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2981 (push key result) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2982 (push val result)))) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2983 (setq value (cdr (cdr value)))) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2984 (setq result (nreverse result)) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2985 result) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
2986 value)) |
42448
5269e6fd0fbc
(custom-face-edit-fix-value): New function.
Richard M. Stallman <rms@gnu.org>
parents:
41606
diff
changeset
|
2987 |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2988 (defun custom-face-edit-convert-widget (widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2989 "Convert :args as widget types in WIDGET." |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2990 (widget-put |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2991 widget |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2992 :args (mapcar (lambda (arg) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2993 (widget-convert arg |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2994 :deactivate 'custom-face-edit-deactivate |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2995 :activate 'custom-face-edit-activate |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2996 :delete 'custom-face-edit-delete)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2997 (widget-get widget :args))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2998 widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
2999 |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3000 (defun custom-face-edit-deactivate (widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3001 "Make face widget WIDGET inactive for user modifications." |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3002 (unless (widget-get widget :inactive) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3003 (let ((tag (custom-face-edit-attribute-tag widget)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3004 (from (copy-marker (widget-get widget :from))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3005 (value (widget-value widget)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3006 (inhibit-read-only t) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3007 (inhibit-modification-hooks t)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3008 (save-excursion |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3009 (goto-char from) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3010 (widget-default-delete widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3011 (insert tag ": *\n") |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3012 (widget-put widget :inactive |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3013 (cons value (cons from (- (point) from)))))))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3014 |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3015 (defun custom-face-edit-activate (widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3016 "Make face widget WIDGET inactive for user modifications." |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3017 (let ((inactive (widget-get widget :inactive)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3018 (inhibit-read-only t) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3019 (inhibit-modification-hooks t)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3020 (when (consp inactive) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3021 (save-excursion |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3022 (goto-char (car (cdr inactive))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3023 (delete-region (point) (+ (point) (cdr (cdr inactive)))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3024 (widget-put widget :inactive nil) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3025 (widget-apply widget :create) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3026 (widget-value-set widget (car inactive)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3027 (widget-setup))))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3028 |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3029 (defun custom-face-edit-delete (widget) |
55789
e004c3c8a4b6
(customize-face, customize-face-other-window, custom-face-edit-delete):
Juanma Barranquero <lekktu@gmail.com>
parents:
55272
diff
changeset
|
3030 "Remove WIDGET from the buffer." |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3031 (let ((inactive (widget-get widget :inactive)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3032 (inhibit-read-only t) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3033 (inhibit-modification-hooks t)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3034 (if (not inactive) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3035 ;; Widget is alive, we don't have to do anything special |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3036 (widget-default-delete widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3037 ;; WIDGET is already deleted because we did so to inactivate it; |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3038 ;; now just get rid of the label we put in its place. |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3039 (delete-region (car (cdr inactive)) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3040 (+ (car (cdr inactive)) (cdr (cdr inactive)))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3041 (widget-put widget :inactive nil)))) |
49521
c259d8177692
2003-01-29 Didier Verna <didier@xemacs.org>
John Paul Wallington <jpw@pobox.com>
parents:
49300
diff
changeset
|
3042 |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3043 |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3044 (defun custom-face-edit-attribute-tag (widget) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3045 "Returns the first :tag property in WIDGET or one of its children." |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3046 (let ((tag (widget-get widget :tag))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3047 (or (and (not (equal tag "")) tag) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3048 (let ((children (widget-get widget :children))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3049 (while (and (null tag) children) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3050 (setq tag (custom-face-edit-attribute-tag (pop children)))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3051 tag)))) |
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3052 |
17334 | 3053 ;;; The `custom-display' Widget. |
3054 | |
3055 (define-widget 'custom-display 'menu-choice | |
3056 "Select a display type." | |
3057 :tag "Display" | |
3058 :value t | |
3059 :help-echo "Specify frames where the face attributes should be used." | |
3060 :args '((const :tag "all" t) | |
58941
a7271df99c36
(custom-display): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58940
diff
changeset
|
3061 (const :tag "defaults" default) |
17334 | 3062 (checklist |
3063 :offset 0 | |
3064 :extra-offset 9 | |
3065 :args ((group :sibling-args (:help-echo "\ | |
3066 Only match the specified window systems.") | |
3067 (const :format "Type: " | |
3068 type) | |
3069 (checklist :inline t | |
3070 :offset 0 | |
3071 (const :format "X " | |
3072 :sibling-args (:help-echo "\ | |
3073 The X11 Window System.") | |
3074 x) | |
3075 (const :format "PM " | |
3076 :sibling-args (:help-echo "\ | |
3077 OS/2 Presentation Manager.") | |
3078 pm) | |
19684
d5378da3dd73
(custom-display): Use w32 instead of win32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19316
diff
changeset
|
3079 (const :format "W32 " |
17334 | 3080 :sibling-args (:help-echo "\ |
19684
d5378da3dd73
(custom-display): Use w32 instead of win32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19316
diff
changeset
|
3081 Windows NT/9X.") |
d5378da3dd73
(custom-display): Use w32 instead of win32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19316
diff
changeset
|
3082 w32) |
48633
8ef126b2490a
(custom-display): Add checkbox for type mac.
Andreas Schwab <schwab@suse.de>
parents:
48243
diff
changeset
|
3083 (const :format "MAC " |
8ef126b2490a
(custom-display): Add checkbox for type mac.
Andreas Schwab <schwab@suse.de>
parents:
48243
diff
changeset
|
3084 :sibling-args (:help-echo "\ |
8ef126b2490a
(custom-display): Add checkbox for type mac.
Andreas Schwab <schwab@suse.de>
parents:
48243
diff
changeset
|
3085 Macintosh OS.") |
8ef126b2490a
(custom-display): Add checkbox for type mac.
Andreas Schwab <schwab@suse.de>
parents:
48243
diff
changeset
|
3086 mac) |
17334 | 3087 (const :format "DOS " |
3088 :sibling-args (:help-echo "\ | |
3089 Plain MS-DOS.") | |
3090 pc) | |
3091 (const :format "TTY%n" | |
3092 :sibling-args (:help-echo "\ | |
3093 Plain text terminals.") | |
3094 tty))) | |
3095 (group :sibling-args (:help-echo "\ | |
3096 Only match the frames with the specified color support.") | |
3097 (const :format "Class: " | |
3098 class) | |
3099 (checklist :inline t | |
3100 :offset 0 | |
3101 (const :format "Color " | |
3102 :sibling-args (:help-echo "\ | |
3103 Match color frames.") | |
3104 color) | |
3105 (const :format "Grayscale " | |
3106 :sibling-args (:help-echo "\ | |
3107 Match grayscale frames.") | |
3108 grayscale) | |
3109 (const :format "Monochrome%n" | |
3110 :sibling-args (:help-echo "\ | |
3111 Match frames with no color support.") | |
3112 mono))) | |
3113 (group :sibling-args (:help-echo "\ | |
55944
173cdf06168d
(custom-display): Add `min-colors'.
Juri Linkov <juri@jurta.org>
parents:
55789
diff
changeset
|
3114 The minimum number of colors the frame should support.") |
173cdf06168d
(custom-display): Add `min-colors'.
Juri Linkov <juri@jurta.org>
parents:
55789
diff
changeset
|
3115 (const :format "" min-colors) |
173cdf06168d
(custom-display): Add `min-colors'.
Juri Linkov <juri@jurta.org>
parents:
55789
diff
changeset
|
3116 (integer :tag "Minimum number of colors" )) |
173cdf06168d
(custom-display): Add `min-colors'.
Juri Linkov <juri@jurta.org>
parents:
55789
diff
changeset
|
3117 (group :sibling-args (:help-echo "\ |
17334 | 3118 Only match frames with the specified intensity.") |
3119 (const :format "\ | |
3120 Background brightness: " | |
3121 background) | |
3122 (checklist :inline t | |
3123 :offset 0 | |
3124 (const :format "Light " | |
3125 :sibling-args (:help-echo "\ | |
3126 Match frames with light backgrounds.") | |
3127 light) | |
3128 (const :format "Dark\n" | |
3129 :sibling-args (:help-echo "\ | |
3130 Match frames with dark backgrounds.") | |
45724
ee1a7b81cb0e
(custom-display): Add support for `supports' predicate.
Miles Bader <miles@gnu.org>
parents:
45244
diff
changeset
|
3131 dark))) |
ee1a7b81cb0e
(custom-display): Add support for `supports' predicate.
Miles Bader <miles@gnu.org>
parents:
45244
diff
changeset
|
3132 (group :sibling-args (:help-echo "\ |
ee1a7b81cb0e
(custom-display): Add support for `supports' predicate.
Miles Bader <miles@gnu.org>
parents:
45244
diff
changeset
|
3133 Only match frames that support the specified face attributes.") |
ee1a7b81cb0e
(custom-display): Add support for `supports' predicate.
Miles Bader <miles@gnu.org>
parents:
45244
diff
changeset
|
3134 (const :format "Supports attributes:" supports) |
45725
abb237aa3c61
(custom-display): Use correct syntax for `supports' attributes.
Miles Bader <miles@gnu.org>
parents:
45724
diff
changeset
|
3135 (custom-face-edit :inline t :format "%n%v")))))) |
17334 | 3136 |
3137 ;;; The `custom-face' Widget. | |
3138 | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3139 (defface custom-face-tag |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3140 `((t (:weight bold :height 1.2 :inherit variable-pitch))) |
17334 | 3141 "Face used for face tags." |
17415 | 3142 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3143 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3144 (put 'custom-face-tag-face 'face-alias 'custom-face-tag) |
17334 | 3145 |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3146 (defcustom custom-face-default-form 'selected |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3147 "Default form of displaying face definition." |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3148 :type '(choice (const all) |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3149 (const selected) |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3150 (const lisp)) |
21669
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21649
diff
changeset
|
3151 :group 'custom-buffer |
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21649
diff
changeset
|
3152 :version "20.3") |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3153 |
17334 | 3154 (define-widget 'custom-face 'custom |
3155 "Customize face." | |
3156 :sample-face 'custom-face-tag-face | |
3157 :help-echo "Set or reset this face." | |
28716
e9fb71a3e51d
(custom-face): Fix parenthesis.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28700
diff
changeset
|
3158 :documentation-property #'face-doc-string |
17334 | 3159 :value-create 'custom-face-value-create |
3160 :action 'custom-face-action | |
18089 | 3161 :custom-category 'face |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3162 :custom-form nil ; defaults to value of `custom-face-default-form' |
17334 | 3163 :custom-set 'custom-face-set |
3164 :custom-save 'custom-face-save | |
3165 :custom-reset-current 'custom-redraw | |
3166 :custom-reset-saved 'custom-face-reset-saved | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
3167 :custom-reset-standard 'custom-face-reset-standard |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
3168 :custom-standard-value 'custom-face-standard-value |
17334 | 3169 :custom-menu 'custom-face-menu-create) |
3170 | |
25685 | 3171 (define-widget 'custom-face-all 'editable-list |
17334 | 3172 "An editable list of display specifications and attributes." |
3173 :entry-format "%i %d %v" | |
3174 :insert-button-args '(:help-echo "Insert new display specification here.") | |
3175 :append-button-args '(:help-echo "Append new display specification here.") | |
3176 :delete-button-args '(:help-echo "Delete this display specification.") | |
3177 :args '((group :format "%v" custom-display custom-face-edit))) | |
3178 | |
3179 (defconst custom-face-all (widget-convert 'custom-face-all) | |
3180 "Converted version of the `custom-face-all' widget.") | |
3181 | |
3182 (define-widget 'custom-display-unselected 'item | |
3183 "A display specification that doesn't match the selected display." | |
3184 :match 'custom-display-unselected-match) | |
3185 | |
3186 (defun custom-display-unselected-match (widget value) | |
3187 "Non-nil if VALUE is an unselected display specification." | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
3188 (not (face-spec-set-match-display value (selected-frame)))) |
17334 | 3189 |
25685 | 3190 (define-widget 'custom-face-selected 'group |
17334 | 3191 "Edit the attributes of the selected display in a face specification." |
58940
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3192 :args '((choice :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3193 (group :tag "With Defaults" :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3194 (group (const :tag "" default) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3195 (custom-face-edit :tag " Default\n Attributes")) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3196 (repeat :format "" |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3197 :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3198 (group custom-display-unselected sexp)) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3199 (group (sexp :format "") |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3200 (custom-face-edit :tag " Overriding\n Attributes")) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3201 (repeat :format "" |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3202 :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3203 sexp)) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3204 (group :tag "No Defaults" :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3205 (repeat :format "" |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3206 :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3207 (group custom-display-unselected sexp)) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3208 (group (sexp :format "") |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3209 (custom-face-edit :tag "\n Attributes")) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3210 (repeat :format "" |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3211 :inline t |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3212 sexp))))) |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3213 |
841754cd73c6
(custom-face-selected): Handle `default' specs.
Richard M. Stallman <rms@gnu.org>
parents:
58797
diff
changeset
|
3214 |
17334 | 3215 |
3216 (defconst custom-face-selected (widget-convert 'custom-face-selected) | |
3217 "Converted version of the `custom-face-selected' widget.") | |
3218 | |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3219 (defun custom-filter-face-spec (spec filter-index &optional default-filter) |
33843
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3220 "Return a canonicalized version of SPEC using. |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3221 FILTER-INDEX is the index in the entry for each attribute in |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3222 `custom-face-attributes' at which the appropriate filter function can be |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3223 found, and DEFAULT-FILTER is the filter to apply for attributes that |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3224 don't specify one." |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3225 (mapcar (lambda (entry) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3226 ;; Filter a single face-spec entry |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3227 (let ((tests (car entry)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3228 (unfiltered-attrs |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3229 ;; Handle both old- and new-style attribute syntax |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3230 (if (listp (car (cdr entry))) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3231 (car (cdr entry)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3232 (cdr entry))) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3233 (filtered-attrs nil)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3234 ;; Filter each face attribute |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3235 (while unfiltered-attrs |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3236 (let* ((attr (pop unfiltered-attrs)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3237 (pre-filtered-value (pop unfiltered-attrs)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3238 (filter |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3239 (or (nth filter-index (assq attr custom-face-attributes)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3240 default-filter)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3241 (filtered-value |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3242 (if filter |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3243 (funcall filter pre-filtered-value) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3244 pre-filtered-value))) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3245 (push filtered-value filtered-attrs) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3246 (push attr filtered-attrs))) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3247 ;; |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3248 (list tests filtered-attrs))) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3249 spec)) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3250 |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3251 (defun custom-pre-filter-face-spec (spec) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3252 "Return SPEC changed as necessary for editing by the face customization widget. |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3253 SPEC must be a full face spec." |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3254 (custom-filter-face-spec spec 2)) |
33843
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3255 |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3256 (defun custom-post-filter-face-spec (spec) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3257 "Return the customized SPEC in a form suitable for setting the face." |
39606
1b4259bc2f74
(custom-face-edit-convert-widget)
Miles Bader <miles@gnu.org>
parents:
39153
diff
changeset
|
3258 (custom-filter-face-spec spec 3)) |
33843
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3259 |
17334 | 3260 (defun custom-face-value-create (widget) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3261 "Create a list of the display specifications for WIDGET." |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3262 (let ((buttons (widget-get widget :buttons)) |
25685 | 3263 children |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3264 (symbol (widget-get widget :value)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3265 (tag (widget-get widget :tag)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3266 (state (widget-get widget :custom-state)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3267 (begin (point)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3268 (is-last (widget-get widget :custom-last)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3269 (prefix (widget-get widget :custom-prefix))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3270 (unless tag |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3271 (setq tag (prin1-to-string symbol))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3272 (cond ((eq custom-buffer-style 'tree) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3273 (insert prefix (if is-last " `--- " " |--- ")) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3274 (push (widget-create-child-and-convert |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3275 widget 'custom-browse-face-tag) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3276 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3277 (insert " " tag "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3278 (widget-put widget :buttons buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3279 (t |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3280 ;; Create tag. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3281 (insert tag) |
34041
40708840c132
(custom-face-value-create): Always emphasize tag.
Gerd Moellmann <gerd@gnu.org>
parents:
33986
diff
changeset
|
3282 (widget-specify-sample widget begin (point)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3283 (if (eq custom-buffer-style 'face) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3284 (insert " ") |
33024
42e118959715
(custom-face-value-create): If face name doesn't end with "face", add
Miles Bader <miles@gnu.org>
parents:
32936
diff
changeset
|
3285 (if (string-match "face\\'" tag) |
42e118959715
(custom-face-value-create): If face name doesn't end with "face", add
Miles Bader <miles@gnu.org>
parents:
32936
diff
changeset
|
3286 (insert ":") |
42e118959715
(custom-face-value-create): If face name doesn't end with "face", add
Miles Bader <miles@gnu.org>
parents:
32936
diff
changeset
|
3287 (insert " face: "))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3288 ;; Sample. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3289 (push (widget-create-child-and-convert widget 'item |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3290 :format "(%{%t%})" |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3291 :sample-face symbol |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3292 :tag "sample") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3293 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3294 ;; Visibility. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3295 (insert " ") |
25685 | 3296 (push (widget-create-child-and-convert |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3297 widget 'visibility |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3298 :help-echo "Hide or show this face." |
46580
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
3299 :on "Hide Face" |
2c25b46baf82
(custom-variable-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
46408
diff
changeset
|
3300 :off "Show Face" |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3301 :action 'custom-toggle-parent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3302 (not (eq state 'hidden))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3303 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3304 ;; Magic. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3305 (insert "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3306 (let ((magic (widget-create-child-and-convert |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3307 widget 'custom-magic nil))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3308 (widget-put widget :custom-magic magic) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3309 (push magic buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3310 ;; Update buttons. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3311 (widget-put widget :buttons buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3312 ;; Insert documentation. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3313 (widget-default-format-handler widget ?h) |
25685 | 3314 ;; The comment field |
3315 (unless (eq state 'hidden) | |
3316 (let* ((comment (get symbol 'face-comment)) | |
3317 (comment-widget | |
3318 (widget-create-child-and-convert | |
3319 widget 'custom-comment | |
3320 :parent widget | |
3321 :value (or comment "")))) | |
3322 (widget-put widget :comment-widget comment-widget) | |
3323 (push comment-widget children))) | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3324 ;; See also. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3325 (unless (eq state 'hidden) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3326 (when (eq (widget-get widget :custom-level) 1) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3327 (custom-add-parent-links widget)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3328 (custom-add-see-also widget)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3329 ;; Editor. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3330 (unless (eq (preceding-char) ?\n) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3331 (insert "\n")) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3332 (unless (eq state 'hidden) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3333 (message "Creating face editor...") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3334 (custom-load-widget widget) |
20411
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3335 (unless (widget-get widget :custom-form) |
089ca3e66e6d
(custom-unlispify-remove-prefixes): Reference to
Karl Heuer <kwzh@gnu.org>
parents:
20398
diff
changeset
|
3336 (widget-put widget :custom-form custom-face-default-form)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3337 (let* ((symbol (widget-value widget)) |
40825
22caa22b7399
2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
40801
diff
changeset
|
3338 (spec (or (get symbol 'customized-face) |
22caa22b7399
2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
40801
diff
changeset
|
3339 (get symbol 'saved-face) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3340 (get symbol 'face-defface-spec) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3341 ;; Attempt to construct it. |
25685 | 3342 (list (list t (custom-face-attributes-get |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3343 symbol (selected-frame)))))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3344 (form (widget-get widget :custom-form)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3345 (indent (widget-get widget :indent)) |
19097
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3346 edit) |
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3347 ;; If the user has changed this face in some other way, |
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3348 ;; edit it as the user has specified it. |
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3349 (if (not (face-spec-match-p symbol spec (selected-frame))) |
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3350 (setq spec (list (list t (face-attr-construct symbol (selected-frame)))))) |
33843
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3351 (setq spec (custom-pre-filter-face-spec spec)) |
19097
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3352 (setq edit (widget-create-child-and-convert |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3353 widget |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3354 (cond ((and (eq form 'selected) |
25685 | 3355 (widget-apply custom-face-selected |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3356 :match spec)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3357 (when indent (insert-char ?\ indent)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3358 'custom-face-selected) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3359 ((and (not (eq form 'lisp)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3360 (widget-apply custom-face-all |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3361 :match spec)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3362 'custom-face-all) |
25685 | 3363 (t |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3364 (when indent (insert-char ?\ indent)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3365 'sexp)) |
19097
200ff7e7d620
(custom-face-value-create): Take account
Richard M. Stallman <rms@gnu.org>
parents:
19040
diff
changeset
|
3366 :value spec)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3367 (custom-face-state-set widget) |
25685 | 3368 (push edit children) |
3369 (widget-put widget :children children)) | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3370 (message "Creating face editor...done")))))) |
17334 | 3371 |
25685 | 3372 (defvar custom-face-menu |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3373 `(("Set for Current Session" custom-face-set) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3374 ,@(when (or custom-file user-init-file) |
68278
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
3375 '(("Save for Future Sessions" custom-face-save))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3376 ("Undo Edits" custom-redraw |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3377 (lambda (widget) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3378 (memq (widget-get widget :custom-state) '(modified changed)))) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3379 ("Reset to Saved" custom-face-reset-saved |
68021
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
3380 (lambda (widget) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
3381 (or (get (widget-value widget) 'saved-face) |
271ab3aed790
* cus-edit.el (custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68020
diff
changeset
|
3382 (get (widget-value widget) 'saved-face-comment)))) |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
3383 ,@(when (or custom-file user-init-file) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3384 '(("Erase Customization" custom-face-reset-standard |
67744
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
3385 (lambda (widget) |
1c62bde28518
(custom-variable-prompt): Say "variable" in prompt.
Richard M. Stallman <rms@gnu.org>
parents:
67677
diff
changeset
|
3386 (get (widget-value widget) 'face-defface-spec))))) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3387 ("---" ignore ignore) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3388 ("Add Comment" custom-comment-show custom-comment-invisible-p) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3389 ("---" ignore ignore) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3390 ("For Current Display" custom-face-edit-selected |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3391 (lambda (widget) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3392 (not (eq (widget-get widget :custom-form) 'selected)))) |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3393 ("For All Kinds of Displays" custom-face-edit-all |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3394 (lambda (widget) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3395 (not (eq (widget-get widget :custom-form) 'all)))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3396 ("Show Lisp Expression" custom-face-edit-lisp |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3397 (lambda (widget) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3398 (not (eq (widget-get widget :custom-form) 'lisp))))) |
17334 | 3399 "Alist of actions for the `custom-face' widget. |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3400 Each entry has the form (NAME ACTION FILTER) where NAME is the name of |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3401 the menu entry, ACTION is the function to call on the widget when the |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3402 menu is selected, and FILTER is a predicate which takes a `custom-face' |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3403 widget as an argument, and returns non-nil if ACTION is valid on that |
26625
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
3404 widget. If FILTER is nil, ACTION is always valid.") |
17334 | 3405 |
3406 (defun custom-face-edit-selected (widget) | |
3407 "Edit selected attributes of the value of WIDGET." | |
3408 (widget-put widget :custom-state 'unknown) | |
3409 (widget-put widget :custom-form 'selected) | |
3410 (custom-redraw widget)) | |
3411 | |
3412 (defun custom-face-edit-all (widget) | |
3413 "Edit all attributes of the value of WIDGET." | |
3414 (widget-put widget :custom-state 'unknown) | |
3415 (widget-put widget :custom-form 'all) | |
3416 (custom-redraw widget)) | |
3417 | |
3418 (defun custom-face-edit-lisp (widget) | |
28130 | 3419 "Edit the Lisp representation of the value of WIDGET." |
17334 | 3420 (widget-put widget :custom-state 'unknown) |
3421 (widget-put widget :custom-form 'lisp) | |
3422 (custom-redraw widget)) | |
3423 | |
3424 (defun custom-face-state-set (widget) | |
3425 "Set the state of WIDGET." | |
25685 | 3426 (let* ((symbol (widget-value widget)) |
3427 (comment (get symbol 'face-comment)) | |
51277
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3428 tmp temp |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3429 (state |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3430 (cond ((progn |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3431 (setq tmp (get symbol 'customized-face)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3432 (setq temp (get symbol 'customized-face-comment)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3433 (or tmp temp)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3434 (if (equal temp comment) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3435 'set |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3436 'changed)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3437 ((progn |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3438 (setq tmp (get symbol 'saved-face)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3439 (setq temp (get symbol 'saved-face-comment)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3440 (or tmp temp)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3441 (if (equal temp comment) |
67784
7c9d6a4a35c7
(custom-face-state-set): Check theme-value.
Chong Yidong <cyd@stupidchicken.com>
parents:
67783
diff
changeset
|
3442 (cond |
7c9d6a4a35c7
(custom-face-state-set): Check theme-value.
Chong Yidong <cyd@stupidchicken.com>
parents:
67783
diff
changeset
|
3443 ((eq 'user (caar (get symbol 'theme-face))) |
7c9d6a4a35c7
(custom-face-state-set): Check theme-value.
Chong Yidong <cyd@stupidchicken.com>
parents:
67783
diff
changeset
|
3444 'saved) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
3445 ((eq 'changed (caar (get symbol 'theme-face))) |
67784
7c9d6a4a35c7
(custom-face-state-set): Check theme-value.
Chong Yidong <cyd@stupidchicken.com>
parents:
67783
diff
changeset
|
3446 'changed) |
7c9d6a4a35c7
(custom-face-state-set): Check theme-value.
Chong Yidong <cyd@stupidchicken.com>
parents:
67783
diff
changeset
|
3447 (t 'themed)) |
51277
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3448 'changed)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3449 ((get symbol 'face-defface-spec) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3450 (if (equal comment nil) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3451 'standard |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3452 'changed)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3453 (t |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3454 'rogue)))) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3455 ;; If the user called set-face-attribute to change the default |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3456 ;; for new frames, this face is "set outside of Customize". |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3457 (if (and (not (eq state 'rogue)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3458 (get symbol 'face-modified)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3459 (setq state 'changed)) |
caaa4fda6808
(custom-face-state-set): non-nil `face-modified'
Richard M. Stallman <rms@gnu.org>
parents:
50283
diff
changeset
|
3460 (widget-put widget :custom-state state))) |
17334 | 3461 |
3462 (defun custom-face-action (widget &optional event) | |
3463 "Show the menu for `custom-face' WIDGET. | |
3464 Optional EVENT is the location for the menu." | |
3465 (if (eq (widget-get widget :custom-state) 'hidden) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3466 (custom-toggle-hide widget) |
17334 | 3467 (let* ((completion-ignore-case t) |
3468 (symbol (widget-get widget :value)) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
3469 (answer (widget-choose (concat "Operation on " |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
3470 (custom-unlispify-tag-name symbol)) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3471 (custom-menu-filter custom-face-menu |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3472 widget) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3473 event))) |
17334 | 3474 (if answer |
3475 (funcall answer widget))))) | |
3476 | |
3477 (defun custom-face-set (widget) | |
3478 "Make the face attributes in WIDGET take effect." | |
3479 (let* ((symbol (widget-value widget)) | |
3480 (child (car (widget-get widget :children))) | |
33843
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3481 (value (custom-post-filter-face-spec (widget-value child))) |
25685 | 3482 (comment-widget (widget-get widget :comment-widget)) |
3483 (comment (widget-value comment-widget))) | |
3484 (when (equal comment "") | |
3485 (setq comment nil) | |
3486 ;; Make the comment invisible by hand if it's empty | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
3487 (custom-comment-hide comment-widget)) |
17334 | 3488 (put symbol 'customized-face value) |
69624
efd1add5bedf
* cus-edit.el (custom-face-set): Call custom-push-theme before
Chong Yidong <cyd@stupidchicken.com>
parents:
69540
diff
changeset
|
3489 (custom-push-theme 'theme-face symbol 'user 'set value) |
33843
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3490 (if (face-spec-choose value) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3491 (face-spec-set symbol value) |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3492 ;; face-set-spec ignores empty attribute lists, so just give it |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3493 ;; something harmless instead. |
388a61e78c53
(custom-filter-face-spec, custom-pre-filter-face-spec)
Miles Bader <miles@gnu.org>
parents:
33774
diff
changeset
|
3494 (face-spec-set symbol '((t :foreground unspecified)))) |
25685 | 3495 (put symbol 'customized-face-comment comment) |
3496 (put symbol 'face-comment comment) | |
17334 | 3497 (custom-face-state-set widget) |
3498 (custom-redraw-magic widget))) | |
3499 | |
68278
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
3500 (defun custom-face-save (widget) |
19883
519eab181c36
(custom-face-menu): Use custom-face-save-command. not custom-face-save.
Richard M. Stallman <rms@gnu.org>
parents:
19823
diff
changeset
|
3501 "Save in `.emacs' the face attributes in WIDGET." |
17334 | 3502 (let* ((symbol (widget-value widget)) |
3503 (child (car (widget-get widget :children))) | |
35441
d85fe63db92b
(custom-face-save): Do post-processing on the face's new value like
Miles Bader <miles@gnu.org>
parents:
35265
diff
changeset
|
3504 (value (custom-post-filter-face-spec (widget-value child))) |
25685 | 3505 (comment-widget (widget-get widget :comment-widget)) |
3506 (comment (widget-value comment-widget))) | |
3507 (when (equal comment "") | |
3508 (setq comment nil) | |
3509 ;; Make the comment invisible by hand if it's empty | |
25824
0d1ba90ad774
(custom-comment): Change widget definition.
Dave Love <fx@gnu.org>
parents:
25685
diff
changeset
|
3510 (custom-comment-hide comment-widget)) |
68026
c7ec296cf313
* cus-edit.el (custom-face-save): Push to theme-face before
Chong Yidong <cyd@stupidchicken.com>
parents:
68021
diff
changeset
|
3511 (custom-push-theme 'theme-face symbol 'user 'set value) |
35441
d85fe63db92b
(custom-face-save): Do post-processing on the face's new value like
Miles Bader <miles@gnu.org>
parents:
35265
diff
changeset
|
3512 (if (face-spec-choose value) |
d85fe63db92b
(custom-face-save): Do post-processing on the face's new value like
Miles Bader <miles@gnu.org>
parents:
35265
diff
changeset
|
3513 (face-spec-set symbol value) |
d85fe63db92b
(custom-face-save): Do post-processing on the face's new value like
Miles Bader <miles@gnu.org>
parents:
35265
diff
changeset
|
3514 ;; face-set-spec ignores empty attribute lists, so just give it |
d85fe63db92b
(custom-face-save): Do post-processing on the face's new value like
Miles Bader <miles@gnu.org>
parents:
35265
diff
changeset
|
3515 ;; something harmless instead. |
d85fe63db92b
(custom-face-save): Do post-processing on the face's new value like
Miles Bader <miles@gnu.org>
parents:
35265
diff
changeset
|
3516 (face-spec-set symbol '((t :foreground unspecified)))) |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
3517 (unless (eq (widget-get widget :custom-state) 'standard) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
3518 (put symbol 'saved-face value)) |
17334 | 3519 (put symbol 'customized-face nil) |
25685 | 3520 (put symbol 'face-comment comment) |
3521 (put symbol 'customized-face-comment nil) | |
3522 (put symbol 'saved-face-comment comment) | |
20262
c6532008f2a9
(custom-face-save): Save the face.
Karl Heuer <kwzh@gnu.org>
parents:
20174
diff
changeset
|
3523 (custom-save-all) |
17334 | 3524 (custom-face-state-set widget) |
3525 (custom-redraw-magic widget))) | |
3526 | |
68278
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
3527 ;; For backward compatibility. |
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
3528 (define-obsolete-function-alias 'custom-face-save-command 'custom-face-save |
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
3529 "22.1") |
125d04254c22
(custom-buffer-create-internal): State in the text above
Luc Teirlinck <teirllm@auburn.edu>
parents:
68232
diff
changeset
|
3530 |
17334 | 3531 (defun custom-face-reset-saved (widget) |
3532 "Restore WIDGET to the face's default attributes." | |
3533 (let* ((symbol (widget-value widget)) | |
3534 (child (car (widget-get widget :children))) | |
25685 | 3535 (value (get symbol 'saved-face)) |
3536 (comment (get symbol 'saved-face-comment)) | |
3537 (comment-widget (widget-get widget :comment-widget))) | |
3538 (unless (or value comment) | |
17334 | 3539 (error "No saved value for this face")) |
3540 (put symbol 'customized-face nil) | |
25685 | 3541 (put symbol 'customized-face-comment nil) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
3542 (custom-push-theme 'theme-face symbol 'user 'set value) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
3543 (face-spec-set symbol value) |
25685 | 3544 (put symbol 'face-comment comment) |
17334 | 3545 (widget-value-set child value) |
25685 | 3546 ;; This call manages the comment visibility |
3547 (widget-value-set comment-widget (or comment "")) | |
17334 | 3548 (custom-face-state-set widget) |
3549 (custom-redraw-magic widget))) | |
3550 | |
46408
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
3551 (defun custom-face-standard-value (widget) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
3552 (get (widget-value widget) 'face-defface-spec)) |
ccaa90ab16a3
New operation :custom-standard-value.
Richard M. Stallman <rms@gnu.org>
parents:
45725
diff
changeset
|
3553 |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
3554 (defun custom-face-reset-standard (widget) |
67749
1607dd4159f5
(custom-reset-menu, custom-magic-alist, Custom-mode-menu):
Richard M. Stallman <rms@gnu.org>
parents:
67747
diff
changeset
|
3555 "Restore WIDGET to the face's standard attribute values. |
1607dd4159f5
(custom-reset-menu, custom-magic-alist, Custom-mode-menu):
Richard M. Stallman <rms@gnu.org>
parents:
67747
diff
changeset
|
3556 This operation eliminates any saved attributes for the face, |
26625
faf989c7a28e
(Custom-reset-standard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
26451
diff
changeset
|
3557 restoring it to the state of a face that has never been customized." |
17334 | 3558 (let* ((symbol (widget-value widget)) |
3559 (child (car (widget-get widget :children))) | |
25685 | 3560 (value (get symbol 'face-defface-spec)) |
3561 (comment-widget (widget-get widget :comment-widget))) | |
17334 | 3562 (unless value |
17641
4650d25e48f6
Say "standard settings" instead of "factory settings".
Richard M. Stallman <rms@gnu.org>
parents:
17550
diff
changeset
|
3563 (error "No standard setting for this face")) |
17334 | 3564 (put symbol 'customized-face nil) |
25685 | 3565 (put symbol 'customized-face-comment nil) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
3566 (custom-push-theme 'theme-face symbol 'user 'reset) |
69624
efd1add5bedf
* cus-edit.el (custom-face-set): Call custom-push-theme before
Chong Yidong <cyd@stupidchicken.com>
parents:
69540
diff
changeset
|
3567 (face-spec-set symbol value) |
67792
1c774eee2980
* cus-edit.el (custom-variable-set, custom-variable-set)
Chong Yidong <cyd@stupidchicken.com>
parents:
67791
diff
changeset
|
3568 (custom-theme-recalc-face symbol) |
25685 | 3569 (when (or (get symbol 'saved-face) (get symbol 'saved-face-comment)) |
17334 | 3570 (put symbol 'saved-face nil) |
25685 | 3571 (put symbol 'saved-face-comment nil) |
17334 | 3572 (custom-save-all)) |
25685 | 3573 (put symbol 'face-comment nil) |
69624
efd1add5bedf
* cus-edit.el (custom-face-set): Call custom-push-theme before
Chong Yidong <cyd@stupidchicken.com>
parents:
69540
diff
changeset
|
3574 (widget-value-set child |
efd1add5bedf
* cus-edit.el (custom-face-set): Call custom-push-theme before
Chong Yidong <cyd@stupidchicken.com>
parents:
69540
diff
changeset
|
3575 (custom-pre-filter-face-spec |
efd1add5bedf
* cus-edit.el (custom-face-set): Call custom-push-theme before
Chong Yidong <cyd@stupidchicken.com>
parents:
69540
diff
changeset
|
3576 (list (list t (custom-face-attributes-get |
efd1add5bedf
* cus-edit.el (custom-face-set): Call custom-push-theme before
Chong Yidong <cyd@stupidchicken.com>
parents:
69540
diff
changeset
|
3577 symbol nil))))) |
25685 | 3578 ;; This call manages the comment visibility |
3579 (widget-value-set comment-widget "") | |
17334 | 3580 (custom-face-state-set widget) |
3581 (custom-redraw-magic widget))) | |
3582 | |
3583 ;;; The `face' Widget. | |
3584 | |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3585 (defvar widget-face-prompt-value-history nil |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3586 "History of input to `widget-face-prompt-value'.") |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3587 |
61307
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3588 (define-widget 'face 'symbol |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3589 "A Lisp face name (with sample)." |
66941
1710aca8150f
(Custom-reset-standard): Verify that
Richard M. Stallman <rms@gnu.org>
parents:
66904
diff
changeset
|
3590 :format "%{%t%}: (%{sample%}) %v" |
61307
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3591 :tag "Face" |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3592 :value 'default |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3593 :sample-face-get 'widget-face-sample-face-get |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3594 :notify 'widget-face-notify |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3595 :match (lambda (widget value) (facep value)) |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3596 :complete-function (lambda () |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3597 (interactive) |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3598 (lisp-complete-symbol 'facep)) |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3599 :prompt-match 'facep |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3600 :prompt-history 'widget-face-prompt-value-history |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3601 :validate (lambda (widget) |
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3602 (unless (facep (widget-value widget)) |
61307
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3603 (widget-put widget |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3604 :error (format "Invalid face: %S" |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3605 (widget-value widget))) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3606 widget))) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3607 |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3608 (defun widget-face-sample-face-get (widget) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3609 (let ((value (widget-value widget))) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3610 (if (facep value) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3611 value |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3612 'default))) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3613 |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3614 (defun widget-face-notify (widget child &optional event) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3615 "Update the sample, and notify the parent." |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3616 (overlay-put (widget-get widget :sample-overlay) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3617 'face (widget-apply widget :sample-face-get)) |
0592ebb75598
(face): Derive from symbol widget. Display sample
David Ponce <david@dponce.com>
parents:
60296
diff
changeset
|
3618 (widget-default-notify widget child event)) |
60280
f0850dec46a9
(custom-buffer-create-internal): Improve progress msgs.
Richard M. Stallman <rms@gnu.org>
parents:
60214
diff
changeset
|
3619 |
17334 | 3620 |
3621 ;;; The `hook' Widget. | |
3622 | |
3623 (define-widget 'hook 'list | |
3624 "A emacs lisp hook" | |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
3625 :value-to-internal (lambda (widget value) |
19886
539d06d1f0da
(customize-group): Handle groups not yet loaded.
Richard M. Stallman <rms@gnu.org>
parents:
19883
diff
changeset
|
3626 (if (and value (symbolp value)) |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
3627 (list value) |
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
3628 value)) |
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
3629 :match (lambda (widget value) |
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
3630 (or (symbolp value) |
20174
e1ca1fe89e6e
(hook): Use `widget-group-match' instead of
Karl Heuer <kwzh@gnu.org>
parents:
20100
diff
changeset
|
3631 (widget-group-match widget value))) |
28130 | 3632 ;; Avoid adding undefined functions to the hook, especially for |
3633 ;; things like `find-file-hook' or even more basic ones, to avoid | |
3634 ;; chaos. | |
3635 :set (lambda (symbol value) | |
28310
9ba6478b7a27
(hook): Use `dolist' instead of CL's `mapc'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28245
diff
changeset
|
3636 (dolist (elt value) |
9ba6478b7a27
(hook): Use `dolist' instead of CL's `mapc'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28245
diff
changeset
|
3637 (if (fboundp elt) |
9ba6478b7a27
(hook): Use `dolist' instead of CL's `mapc'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28245
diff
changeset
|
3638 (add-hook symbol elt)))) |
17334 | 3639 :convert-widget 'custom-hook-convert-widget |
3640 :tag "Hook") | |
3641 | |
3642 (defun custom-hook-convert-widget (widget) | |
27250
807fc106b24c
(custom-hook-convert-widget): Fix comment.
Gerd Moellmann <gerd@gnu.org>
parents:
26803
diff
changeset
|
3643 ;; Handle `:options'. |
17334 | 3644 (let* ((options (widget-get widget :options)) |
25685 | 3645 (other `(editable-list :inline t |
17334 | 3646 :entry-format "%i %d%v" |
3647 (function :format " %v"))) | |
3648 (args (if options | |
3649 (list `(checklist :inline t | |
3650 ,@(mapcar (lambda (entry) | |
3651 `(function-item ,entry)) | |
3652 options)) | |
3653 other) | |
3654 (list other)))) | |
3655 (widget-put widget :args args) | |
3656 widget)) | |
3657 | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3658 ;;; The `custom-group-link' Widget. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3659 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3660 (define-widget 'custom-group-link 'link |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3661 "Show parent in other window when activated." |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
3662 :button-face 'custom-link |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
3663 :mouse-face 'highlight |
68892
93b583aac002
* wid-edit.el (widget-button-click): Use :pressed-face property
Chong Yidong <cyd@stupidchicken.com>
parents:
68406
diff
changeset
|
3664 :pressed-face 'highlight |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
3665 :help-echo "Create customization buffer for this group." |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3666 :action 'custom-group-link-action) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3667 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3668 (defun custom-group-link-action (widget &rest ignore) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3669 (customize-group (widget-value widget))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3670 |
17334 | 3671 ;;; The `custom-group' Widget. |
3672 | |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
3673 (defcustom custom-group-tag-faces nil |
17334 | 3674 ;; In XEmacs, this ought to play games with font size. |
25685 | 3675 ;; Fixme: make it do so in Emacs. |
17334 | 3676 "Face used for group tags. |
3677 The first member is used for level 1 groups, the second for level 2, | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3678 and so forth. The remaining group tags are shown with `custom-group-tag'." |
17334 | 3679 :type '(repeat face) |
17415 | 3680 :group 'custom-faces) |
17334 | 3681 |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3682 (defface custom-group-tag-1 |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3683 `((((class color) |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3684 (background dark)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3685 (:foreground "pink" :weight bold :height 1.2 :inherit variable-pitch)) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
3686 (((min-colors 88) (class color) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
3687 (background light)) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
3688 (:foreground "red1" :weight bold :height 1.2 :inherit variable-pitch)) |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3689 (((class color) |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3690 (background light)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3691 (:foreground "red" :weight bold :height 1.2 :inherit variable-pitch)) |
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3692 (t (:weight bold))) |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3693 "Face used for group tags." |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3694 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3695 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3696 (put 'custom-group-tag-face-1 'face-alias 'custom-group-tag-1) |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3697 |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3698 (defface custom-group-tag |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3699 `((((class color) |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3700 (background dark)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3701 (:foreground "light blue" :weight bold :height 1.2)) |
61394
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
3702 (((min-colors 88) (class color) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
3703 (background light)) |
31aa9a390538
* mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents:
61307
diff
changeset
|
3704 (:foreground "blue1" :weight bold :height 1.2)) |
28172
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3705 (((class color) |
b243caac6505
(custom-variable-tag-face): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
28130
diff
changeset
|
3706 (background light)) |
42451
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3707 (:foreground "blue" :weight bold :height 1.2)) |
cade20d9a300
(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman <rms@gnu.org>
parents:
42448
diff
changeset
|
3708 (t (:weight bold))) |
17334 | 3709 "Face used for low level group tags." |
17415 | 3710 :group 'custom-faces) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3711 ;; backward-compatibility alias |
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3712 (put 'custom-group-tag-face 'face-alias 'custom-group-tag) |
17334 | 3713 |
3714 (define-widget 'custom-group 'custom | |
3715 "Customize group." | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3716 :format "%v" |
17334 | 3717 :sample-face-get 'custom-group-sample-face-get |
3718 :documentation-property 'group-documentation | |
3719 :help-echo "Set or reset all members of this group." | |
3720 :value-create 'custom-group-value-create | |
3721 :action 'custom-group-action | |
18089 | 3722 :custom-category 'group |
17334 | 3723 :custom-set 'custom-group-set |
3724 :custom-save 'custom-group-save | |
3725 :custom-reset-current 'custom-group-reset-current | |
3726 :custom-reset-saved 'custom-group-reset-saved | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
3727 :custom-reset-standard 'custom-group-reset-standard |
17334 | 3728 :custom-menu 'custom-group-menu-create) |
3729 | |
3730 (defun custom-group-sample-face-get (widget) | |
3731 ;; Use :sample-face. | |
3732 (or (nth (1- (widget-get widget :custom-level)) custom-group-tag-faces) | |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
3733 'custom-group-tag)) |
17334 | 3734 |
18430
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3735 (define-widget 'custom-group-visibility 'visibility |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3736 "An indicator and manipulator for hidden group contents." |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3737 :create 'custom-group-visibility-create) |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3738 |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3739 (defun custom-group-visibility-create (widget) |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3740 (let ((visible (widget-value widget))) |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3741 (if visible |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3742 (insert "--------"))) |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3743 (widget-default-create widget)) |
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
3744 |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3745 (defun custom-group-members (symbol groups-only) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3746 "Return SYMBOL's custom group members. |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3747 If GROUPS-ONLY non-nil, return only those members that are groups." |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3748 (if (not groups-only) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3749 (get symbol 'custom-group) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3750 (let (members) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3751 (dolist (entry (get symbol 'custom-group)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3752 (when (eq (nth 1 entry) 'custom-group) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3753 (push entry members))) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3754 (nreverse members)))) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3755 |
17334 | 3756 (defun custom-group-value-create (widget) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3757 "Insert a customize group for WIDGET in the current buffer." |
49126
697ca5db73b8
(customize-group, customize-group-other-window):
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49104
diff
changeset
|
3758 (unless (eq (widget-get widget :custom-state) 'hidden) |
49300
b99be2b86231
(customize-changed-options): Undo last doc change.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49218
diff
changeset
|
3759 (custom-load-widget widget)) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3760 (let* ((state (widget-get widget :custom-state)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3761 (level (widget-get widget :custom-level)) |
19040
c0dc58ad2d47
Synched with 1.9954.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19022
diff
changeset
|
3762 ;; (indent (widget-get widget :indent)) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3763 (prefix (widget-get widget :custom-prefix)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3764 (buttons (widget-get widget :buttons)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3765 (tag (widget-get widget :tag)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3766 (symbol (widget-value widget)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3767 (members (custom-group-members symbol |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3768 (and (eq custom-buffer-style 'tree) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3769 custom-browse-only-groups)))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3770 (cond ((and (eq custom-buffer-style 'tree) |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3771 (eq state 'hidden) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3772 (or members (custom-unloaded-widget-p widget))) |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3773 (custom-browse-insert-prefix prefix) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3774 (push (widget-create-child-and-convert |
25685 | 3775 widget 'custom-browse-visibility |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3776 ;; :tag-glyph "plus" |
18856
03eeb83520d8
(custom-group-value-create) <tree>: Don't distinguish
Richard M. Stallman <rms@gnu.org>
parents:
18812
diff
changeset
|
3777 :tag "+") |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3778 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3779 (insert "-- ") |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3780 ;; (widget-glyph-insert nil "-- " "horizontal") |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3781 (push (widget-create-child-and-convert |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3782 widget 'custom-browse-group-tag) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3783 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3784 (insert " " tag "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3785 (widget-put widget :buttons buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3786 ((and (eq custom-buffer-style 'tree) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3787 (zerop (length members))) |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3788 (custom-browse-insert-prefix prefix) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3789 (insert "[ ]-- ") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3790 ;; (widget-glyph-insert nil "[ ]" "empty") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3791 ;; (widget-glyph-insert nil "-- " "horizontal") |
25685 | 3792 (push (widget-create-child-and-convert |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3793 widget 'custom-browse-group-tag) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3794 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3795 (insert " " tag "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3796 (widget-put widget :buttons buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3797 ((eq custom-buffer-style 'tree) |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3798 (custom-browse-insert-prefix prefix) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3799 (if (zerop (length members)) |
25685 | 3800 (progn |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3801 (custom-browse-insert-prefix prefix) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3802 (insert "[ ]-- ") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3803 ;; (widget-glyph-insert nil "[ ]" "empty") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3804 ;; (widget-glyph-insert nil "-- " "horizontal") |
25685 | 3805 (push (widget-create-child-and-convert |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3806 widget 'custom-browse-group-tag) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3807 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3808 (insert " " tag "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3809 (widget-put widget :buttons buttons)) |
25685 | 3810 (push (widget-create-child-and-convert |
3811 widget 'custom-browse-visibility | |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3812 ;; :tag-glyph "minus" |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3813 :tag "-") |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3814 buttons) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3815 (insert "-\\ ") |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3816 ;; (widget-glyph-insert nil "-\\ " "top") |
25685 | 3817 (push (widget-create-child-and-convert |
18562
e22e2a4e683a
Synched with 1.9942.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18462
diff
changeset
|
3818 widget 'custom-browse-group-tag) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3819 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3820 (insert " " tag "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3821 (widget-put widget :buttons buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3822 (message "Creating group...") |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3823 (let* ((members (custom-sort-items members |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3824 custom-browse-sort-alphabetically |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3825 custom-browse-order-groups)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3826 (prefixes (widget-get widget :custom-prefixes)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3827 (custom-prefix-list (custom-prefix-add symbol prefixes)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3828 (extra-prefix (if (widget-get widget :custom-last) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3829 " " |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3830 " | ")) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3831 (prefix (concat prefix extra-prefix)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3832 children entry) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3833 (while members |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3834 (setq entry (car members) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3835 members (cdr members)) |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3836 (push (widget-create-child-and-convert |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3837 widget (nth 1 entry) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3838 :group widget |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3839 :tag (custom-unlispify-tag-name (nth 0 entry)) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3840 :custom-prefixes custom-prefix-list |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3841 :custom-level (1+ level) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3842 :custom-last (null members) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3843 :value (nth 0 entry) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3844 :custom-prefix prefix) |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3845 children)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3846 (widget-put widget :children (reverse children))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3847 (message "Creating group...done"))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3848 ;; Nested style. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3849 ((eq state 'hidden) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3850 ;; Create level indicator. |
18367
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
3851 (unless (eq custom-buffer-style 'links) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
3852 (insert-char ?\ (* custom-buffer-indent (1- level))) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
3853 (insert "-- ")) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3854 ;; Create tag. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3855 (let ((begin (point))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3856 (insert tag) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3857 (widget-specify-sample widget begin (point))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3858 (insert " group: ") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3859 ;; Create link/visibility indicator. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3860 (if (eq custom-buffer-style 'links) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3861 (push (widget-create-child-and-convert |
25685 | 3862 widget 'custom-group-link |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
3863 :tag "Go to Group" |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3864 symbol) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3865 buttons) |
25685 | 3866 (push (widget-create-child-and-convert |
20100
0db4553d47cc
(custom-group-value-create): Use
Karl Heuer <kwzh@gnu.org>
parents:
19886
diff
changeset
|
3867 widget 'custom-group-visibility |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3868 :help-echo "Show members of this group." |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3869 :action 'custom-toggle-parent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3870 (not (eq state 'hidden))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3871 buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3872 (insert " \n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3873 ;; Create magic button. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3874 (let ((magic (widget-create-child-and-convert |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3875 widget 'custom-magic nil))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3876 (widget-put widget :custom-magic magic) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3877 (push magic buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3878 ;; Update buttons. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3879 (widget-put widget :buttons buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3880 ;; Insert documentation. |
18367
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
3881 (if (and (eq custom-buffer-style 'links) (> level 1)) |
f4682a047be1
(custom-magic-value-create):
Richard M. Stallman <rms@gnu.org>
parents:
18364
diff
changeset
|
3882 (widget-put widget :documentation-indent 0)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3883 (widget-default-format-handler widget ?h)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3884 ;; Nested style. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3885 (t ;Visible. |
18370
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3886 ;; Add parent groups references above the group. |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3887 (if t ;;; This should test that the buffer |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3888 ;;; was made to display a group. |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3889 (when (eq level 1) |
18371
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
3890 (if (custom-add-parent-links widget |
a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
Richard M. Stallman <rms@gnu.org>
parents:
18370
diff
changeset
|
3891 "Go to parent group:") |
18370
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3892 (insert "\n")))) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3893 ;; Create level indicator. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3894 (insert-char ?\ (* custom-buffer-indent (1- level))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3895 (insert "/- ") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3896 ;; Create tag. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3897 (let ((start (point))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3898 (insert tag) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3899 (widget-specify-sample widget start (point))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3900 (insert " group: ") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3901 ;; Create visibility indicator. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3902 (unless (eq custom-buffer-style 'links) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3903 (insert "--------") |
25685 | 3904 (push (widget-create-child-and-convert |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3905 widget 'visibility |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3906 :help-echo "Hide members of this group." |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3907 :action 'custom-toggle-parent |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3908 (not (eq state 'hidden))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3909 buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3910 (insert " ")) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3911 ;; Create more dashes. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3912 ;; Use 76 instead of 75 to compensate for the temporary "<" |
25685 | 3913 ;; added by `widget-insert'. |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3914 (insert-char ?- (- 76 (current-column) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3915 (* custom-buffer-indent level))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3916 (insert "\\\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3917 ;; Create magic button. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3918 (let ((magic (widget-create-child-and-convert |
25685 | 3919 widget 'custom-magic |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3920 :indent 0 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3921 nil))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3922 (widget-put widget :custom-magic magic) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3923 (push magic buttons)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3924 ;; Update buttons. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3925 (widget-put widget :buttons buttons) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3926 ;; Insert documentation. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3927 (widget-default-format-handler widget ?h) |
18370
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3928 ;; Parent groups. |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3929 (if nil ;;; This should test that the buffer |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3930 ;;; was not made to display a group. |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3931 (when (eq level 1) |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3932 (insert-char ?\ custom-buffer-indent) |
74558272517b
(custom-group-value-create): Use group-visibility widget.
Richard M. Stallman <rms@gnu.org>
parents:
18368
diff
changeset
|
3933 (custom-add-parent-links widget))) |
25685 | 3934 (custom-add-see-also widget |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3935 (make-string (* custom-buffer-indent level) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3936 ?\ )) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3937 ;; Members. |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3938 (message "Creating group...") |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
3939 (let* ((members (custom-sort-items members |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3940 custom-buffer-sort-alphabetically |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
3941 custom-buffer-order-groups)) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3942 (prefixes (widget-get widget :custom-prefixes)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3943 (custom-prefix-list (custom-prefix-add symbol prefixes)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3944 (length (length members)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3945 (count 0) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3946 (children (mapcar (lambda (entry) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3947 (widget-insert "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3948 (message "\ |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3949 Creating group members... %2d%%" |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3950 (/ (* 100.0 count) length)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3951 (setq count (1+ count)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3952 (prog1 |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3953 (widget-create-child-and-convert |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3954 widget (nth 1 entry) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3955 :group widget |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3956 :tag (custom-unlispify-tag-name |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3957 (nth 0 entry)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3958 :custom-prefixes custom-prefix-list |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3959 :custom-level (1+ level) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3960 :value (nth 0 entry)) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3961 (unless (eq (preceding-char) ?\n) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3962 (widget-insert "\n")))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3963 members))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3964 (message "Creating group magic...") |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
3965 (mapc 'custom-magic-reset children) |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3966 (message "Creating group state...") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3967 (widget-put widget :children children) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3968 (custom-group-state-update widget) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3969 (message "Creating group... done")) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3970 ;; End line |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3971 (insert "\n") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3972 (insert-char ?\ (* custom-buffer-indent (1- level))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3973 (insert "\\- " (widget-get widget :tag) " group end ") |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3974 (insert-char ?- (- 75 (current-column) (* custom-buffer-indent level))) |
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
3975 (insert "/\n"))))) |
17334 | 3976 |
25685 | 3977 (defvar custom-group-menu |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3978 `(("Set for Current Session" custom-group-set |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3979 (lambda (widget) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3980 (eq (widget-get widget :custom-state) 'modified))) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3981 ,@(when (or custom-file user-init-file) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3982 '(("Save for Future Sessions" custom-group-save |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3983 (lambda (widget) |
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3984 (memq (widget-get widget :custom-state) '(modified set)))))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3985 ("Undo Edits" custom-group-reset-current |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
3986 (lambda (widget) |
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
3987 (memq (widget-get widget :custom-state) '(modified)))) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3988 ("Reset to Saved" custom-group-reset-saved |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
3989 (lambda (widget) |
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
3990 (memq (widget-get widget :custom-state) '(modified set)))) |
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
3991 ,@(when (or custom-file user-init-file) |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
3992 '(("Erase Customization" custom-group-reset-standard |
68020
d8acae190ef7
* cus-edit.el (custom-reset-menu, custom-reset, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68017
diff
changeset
|
3993 (lambda (widget) |
68028
b0c2a07f73f6
(custom-reset-menu, Custom-mode-menu)
Chong Yidong <cyd@stupidchicken.com>
parents:
68026
diff
changeset
|
3994 (memq (widget-get widget :custom-state) '(modified set saved))))))) |
17334 | 3995 "Alist of actions for the `custom-group' widget. |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3996 Each entry has the form (NAME ACTION FILTER) where NAME is the name of |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3997 the menu entry, ACTION is the function to call on the widget when the |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3998 menu is selected, and FILTER is a predicate which takes a `custom-group' |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
3999 widget as an argument, and returns non-nil if ACTION is valid on that |
25685 | 4000 widget. If FILTER is nil, ACTION is always valid.") |
17334 | 4001 |
4002 (defun custom-group-action (widget &optional event) | |
4003 "Show the menu for `custom-group' WIDGET. | |
4004 Optional EVENT is the location for the menu." | |
4005 (if (eq (widget-get widget :custom-state) 'hidden) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
4006 (custom-toggle-hide widget) |
17334 | 4007 (let* ((completion-ignore-case t) |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4008 (answer (widget-choose (concat "Operation on " |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4009 (custom-unlispify-tag-name |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4010 (widget-get widget :value))) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
4011 (custom-menu-filter custom-group-menu |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17534
diff
changeset
|
4012 widget) |
17334 | 4013 event))) |
4014 (if answer | |
4015 (funcall answer widget))))) | |
4016 | |
4017 (defun custom-group-set (widget) | |
4018 "Set changes in all modified group members." | |
4019 (let ((children (widget-get widget :children))) | |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4020 (mapc (lambda (child) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4021 (when (eq (widget-get child :custom-state) 'modified) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4022 (widget-apply child :custom-set))) |
17334 | 4023 children ))) |
4024 | |
4025 (defun custom-group-save (widget) | |
4026 "Save all modified group members." | |
4027 (let ((children (widget-get widget :children))) | |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4028 (mapc (lambda (child) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4029 (when (memq (widget-get child :custom-state) '(modified set)) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4030 (widget-apply child :custom-save))) |
17334 | 4031 children ))) |
4032 | |
4033 (defun custom-group-reset-current (widget) | |
4034 "Reset all modified group members." | |
4035 (let ((children (widget-get widget :children))) | |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4036 (mapc (lambda (child) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4037 (when (eq (widget-get child :custom-state) 'modified) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4038 (widget-apply child :custom-reset-current))) |
17334 | 4039 children ))) |
4040 | |
4041 (defun custom-group-reset-saved (widget) | |
4042 "Reset all modified or set group members." | |
4043 (let ((children (widget-get widget :children))) | |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4044 (mapc (lambda (child) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4045 (when (memq (widget-get child :custom-state) '(modified set)) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4046 (widget-apply child :custom-reset-saved))) |
17334 | 4047 children ))) |
4048 | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4049 (defun custom-group-reset-standard (widget) |
17334 | 4050 "Reset all modified, set, or saved group members." |
4051 (let ((children (widget-get widget :children))) | |
28700
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4052 (mapc (lambda (child) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4053 (when (memq (widget-get child :custom-state) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4054 '(modified set saved)) |
a57bafeec17c
(Custom-set, Custom-save, Custom-reset-current)
Dave Love <fx@gnu.org>
parents:
28612
diff
changeset
|
4055 (widget-apply child :custom-reset-standard))) |
17334 | 4056 children ))) |
4057 | |
4058 (defun custom-group-state-update (widget) | |
4059 "Update magic." | |
4060 (unless (eq (widget-get widget :custom-state) 'hidden) | |
4061 (let* ((children (widget-get widget :children)) | |
4062 (states (mapcar (lambda (child) | |
4063 (widget-get child :custom-state)) | |
4064 children)) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4065 (magics custom-magic-alist) |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4066 (found 'standard)) |
17334 | 4067 (while magics |
4068 (let ((magic (car (car magics)))) | |
4069 (if (and (not (eq magic 'hidden)) | |
4070 (memq magic states)) | |
4071 (setq found magic | |
4072 magics nil) | |
4073 (setq magics (cdr magics))))) | |
4074 (widget-put widget :custom-state found))) | |
4075 (custom-magic-reset widget)) | |
65225
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4076 |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4077 ;;; Reading and writing the custom file. |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4078 |
18336
325190603227
Synched with 1.9924.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18320
diff
changeset
|
4079 ;;;###autoload |
19822
b5c12a2d1c26
*** empty log message ***
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19684
diff
changeset
|
4080 (defcustom custom-file nil |
17334 | 4081 "File used for storing customization information. |
19822
b5c12a2d1c26
*** empty log message ***
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
19684
diff
changeset
|
4082 The default is nil, which means to use your init file |
58797
0b90a17a09e1
(custom-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58779
diff
changeset
|
4083 as specified by `user-init-file'. If the value is not nil, |
0b90a17a09e1
(custom-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58779
diff
changeset
|
4084 it should be an absolute file name. |
0b90a17a09e1
(custom-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
58779
diff
changeset
|
4085 |
59335
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4086 You can set this option through Custom, if you carefully read the |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4087 last paragraph below. However, usually it is simpler to write |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4088 something like the following in your init file: |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4089 |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4090 \(setq custom-file \"~/.emacs-custom.el\") |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4091 \(load custom-file) |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4092 |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4093 Note that both lines are necessary: the first line tells Custom to |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4094 save all customizations in this file, but does not load it. |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4095 |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4096 When you change this variable outside Custom, look in the |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4097 previous custom file \(usually your init file) for the |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4098 forms `(custom-set-variables ...)' and `(custom-set-faces ...)', |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4099 and copy them (whichever ones you find) to the new custom file. |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4100 This will preserve your existing customizations. |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4101 |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4102 If you save this option using Custom, Custom will write all |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4103 currently saved customizations, including the new one for this |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4104 option itself, into the file you specify, overwriting any |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4105 `custom-set-variables' and `custom-set-faces' forms already |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4106 present in that file. It will not delete any customizations from |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4107 the old custom file. You should do that manually if that is what you |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4108 want. You also have to put something like `\(load \"CUSTOM-FILE\") |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4109 in your init file, where CUSTOM-FILE is the actual name of the |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4110 file. Otherwise, Emacs will not load the file when it starts up, |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4111 and hence will not set `custom-file' to that file either." |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4112 :type '(choice (const :tag "Your Emacs init file" nil) |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4113 (file :format "%t:%v%d" |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4114 :doc |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4115 "Please read entire docstring below before setting \ |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4116 this through Custom. |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4117 Click om \"More\" \(or position point there and press RETURN) |
45239c528a49
(custom-file): Doc fix for defcustom.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58941
diff
changeset
|
4118 if only the first line of the docstring is shown.")) |
17334 | 4119 :group 'customize) |
4120 | |
20974 | 4121 (defun custom-file () |
4122 "Return the file name for saving customizations." | |
62211
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4123 (file-chase-links |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4124 (or custom-file |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4125 (let ((user-init-file user-init-file) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4126 (default-init-file |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4127 (if (eq system-type 'ms-dos) "~/_emacs" "~/.emacs"))) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4128 (when (null user-init-file) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4129 (if (or (file-exists-p default-init-file) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4130 (and (eq system-type 'windows-nt) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4131 (file-exists-p "~/_emacs"))) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4132 ;; Started with -q, i.e. the file containing |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4133 ;; Custom settings hasn't been read. Saving |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4134 ;; settings there would overwrite other settings. |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4135 (error "Saving settings from \"emacs -q\" would overwrite existing customizations")) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4136 (setq user-init-file default-init-file)) |
6e4e2882c013
(custom-file): Call file-chase-links.
Richard M. Stallman <rms@gnu.org>
parents:
61475
diff
changeset
|
4137 user-init-file)))) |
20974 | 4138 |
65225
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4139 ;;;###autoload |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4140 (defun custom-save-all () |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4141 "Save all customizations in `custom-file'." |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4142 (let* ((filename (custom-file)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4143 (recentf-exclude (if recentf-mode |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4144 (cons (concat "\\`" |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4145 (regexp-quote (custom-file)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4146 "\\'") |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4147 recentf-exclude))) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4148 (old-buffer (find-buffer-visiting filename))) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4149 (with-current-buffer (or old-buffer (find-file-noselect filename)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4150 (let ((inhibit-read-only t)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4151 (custom-save-variables) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4152 (custom-save-faces)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4153 (let ((file-precious-flag t)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4154 (save-buffer)) |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4155 (unless old-buffer |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4156 (kill-buffer (current-buffer)))))) |
67939
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4157 |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4158 ;;;###autoload |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4159 (defun customize-save-customized () |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4160 "Save all user options which have been set in this session." |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4161 (interactive) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4162 (mapatoms (lambda (symbol) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4163 (let ((face (get symbol 'customized-face)) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4164 (value (get symbol 'customized-value)) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4165 (face-comment (get symbol 'customized-face-comment)) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4166 (variable-comment |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4167 (get symbol 'customized-variable-comment))) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4168 (when face |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4169 (put symbol 'saved-face face) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4170 (custom-push-theme 'theme-face symbol 'user 'set value) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4171 (put symbol 'customized-face nil)) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4172 (when value |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4173 (put symbol 'saved-value value) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4174 (custom-push-theme 'theme-value symbol 'user 'set value) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4175 (put symbol 'customized-value nil)) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4176 (when variable-comment |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4177 (put symbol 'saved-variable-comment variable-comment) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4178 (put symbol 'customized-variable-comment nil)) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4179 (when face-comment |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4180 (put symbol 'saved-face-comment face-comment) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4181 (put symbol 'customized-face-comment nil))))) |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4182 ;; We really should update all custom buffers here. |
66965e79dd66
(custom-save-loaded-themes): Call custom-save-delete.
Richard M. Stallman <rms@gnu.org>
parents:
67797
diff
changeset
|
4183 (custom-save-all)) |
65225
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4184 |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4185 ;; Editing the custom file contents in a buffer. |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4186 |
17334 | 4187 (defun custom-save-delete (symbol) |
65225
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4188 "Delete all calls to SYMBOL from the contents of the current buffer. |
26803
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4189 Leave point at the old location of the first such call, |
65225
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4190 or (if there were none) at the end of the buffer. |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4191 |
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4192 This function does not save the buffer." |
17334 | 4193 (goto-char (point-min)) |
25058
af119d40c92d
(custom-save-delete): Avoid error for empty .emacs.
Karl Heuer <kwzh@gnu.org>
parents:
24509
diff
changeset
|
4194 ;; Skip all whitespace and comments. |
af119d40c92d
(custom-save-delete): Avoid error for empty .emacs.
Karl Heuer <kwzh@gnu.org>
parents:
24509
diff
changeset
|
4195 (while (forward-comment 1)) |
af119d40c92d
(custom-save-delete): Avoid error for empty .emacs.
Karl Heuer <kwzh@gnu.org>
parents:
24509
diff
changeset
|
4196 (or (eobp) |
af119d40c92d
(custom-save-delete): Avoid error for empty .emacs.
Karl Heuer <kwzh@gnu.org>
parents:
24509
diff
changeset
|
4197 (save-excursion (forward-sexp (buffer-size)))) ; Test for scan errors. |
26803
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4198 (let (first) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4199 (catch 'found |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4200 (while t ;; We exit this loop only via throw. |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4201 ;; Skip all whitespace and comments. |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4202 (while (forward-comment 1)) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4203 (let ((start (point)) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4204 (sexp (condition-case nil |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4205 (read (current-buffer)) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4206 (end-of-file (throw 'found nil))))) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4207 (when (and (listp sexp) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4208 (eq (car sexp) symbol)) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4209 (delete-region start (point)) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4210 (unless first |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4211 (setq first (point))))))) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4212 (if first |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4213 (goto-char first) |
36628
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4214 ;; Move in front of local variables, otherwise long Custom |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4215 ;; entries would make them ineffective. |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4216 (let ((pos (point-max)) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4217 (case-fold-search t)) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4218 (save-excursion |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4219 (goto-char (point-max)) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4220 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4221 'move) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4222 (when (search-forward "Local Variables:" nil t) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4223 (setq pos (line-beginning-position)))) |
d1106e82508b
(custom-save-delete): Move in front of local
Gerd Moellmann <gerd@gnu.org>
parents:
35441
diff
changeset
|
4224 (goto-char pos))))) |
17334 | 4225 |
4226 (defun custom-save-variables () | |
4227 "Save all customized variables in `custom-file'." | |
4228 (save-excursion | |
4229 (custom-save-delete 'custom-set-variables) | |
25059
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4230 (let ((standard-output (current-buffer)) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4231 (saved-list (make-list 1 0)) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4232 sort-fold-case) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4233 ;; First create a sorted list of saved variables. |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4234 (mapatoms |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4235 (lambda (symbol) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
4236 (if (and (get symbol 'saved-value) |
69004
f4a06252f47c
* cus-edit.el (custom-save-variables): Allow unthemed values.
Chong Yidong <cyd@stupidchicken.com>
parents:
68913
diff
changeset
|
4237 ;; ignore theme values |
f4a06252f47c
* cus-edit.el (custom-save-variables): Allow unthemed values.
Chong Yidong <cyd@stupidchicken.com>
parents:
68913
diff
changeset
|
4238 (or (null (get symbol 'theme-value)) |
f4a06252f47c
* cus-edit.el (custom-save-variables): Allow unthemed values.
Chong Yidong <cyd@stupidchicken.com>
parents:
68913
diff
changeset
|
4239 (eq 'user (caar (get symbol 'theme-value))))) |
25059
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4240 (nconc saved-list (list symbol))))) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4241 (setq saved-list (sort (cdr saved-list) 'string<)) |
17334 | 4242 (unless (bolp) |
4243 (princ "\n")) | |
26653
ea8ae3c8fad5
(custom-save-variables, custom-save-faces): Write a
Dave Love <fx@gnu.org>
parents:
26625
diff
changeset
|
4244 (princ "(custom-set-variables |
47315
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4245 ;; custom-set-variables was added by Custom. |
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4246 ;; If you edit it by hand, you could mess it up, so be careful. |
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4247 ;; Your init file should contain only one such instance. |
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4248 ;; If there is more than one, they won't work right.\n") |
49556
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4249 (dolist (symbol saved-list) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4250 (let ((spec (car-safe (get symbol 'theme-value))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4251 (value (get symbol 'saved-value)) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4252 (requests (get symbol 'custom-requests)) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4253 (now (not (or (custom-variable-p symbol) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4254 (and (not (boundp symbol)) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4255 (not (eq (get symbol 'force-value) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4256 'rogue)))))) |
51362
0b5cb555fd17
(custom-get-fresh-buffer): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51277
diff
changeset
|
4257 (comment (get symbol 'saved-variable-comment))) |
49556
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4258 ;; Check `requests'. |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4259 (dolist (request requests) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4260 (when (and (symbolp request) (not (featurep request))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4261 (message "Unknown requested feature: %s" request) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4262 (setq requests (delq request requests)))) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
4263 (when (or (and spec (eq (car spec) 'user)) |
49556
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4264 comment |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4265 (and (null spec) (get symbol 'saved-value))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4266 (unless (bolp) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4267 (princ "\n")) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4268 (princ " '(") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4269 (prin1 symbol) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4270 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4271 (prin1 (car value)) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4272 (when (or now requests comment) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4273 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4274 (prin1 now) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4275 (when (or requests comment) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4276 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4277 (prin1 requests) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4278 (when comment |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4279 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4280 (prin1 comment)))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4281 (princ ")")))) |
26803
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4282 (if (bolp) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4283 (princ " ")) |
17334 | 4284 (princ ")") |
4285 (unless (looking-at "\n") | |
4286 (princ "\n"))))) | |
4287 | |
4288 (defun custom-save-faces () | |
4289 "Save all customized faces in `custom-file'." | |
4290 (save-excursion | |
48949
f216c93c4189
(customize-save-variable): Take themes into account.
Richard M. Stallman <rms@gnu.org>
parents:
48709
diff
changeset
|
4291 (custom-save-delete 'custom-reset-faces) |
17334 | 4292 (custom-save-delete 'custom-set-faces) |
25059
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4293 (let ((standard-output (current-buffer)) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4294 (saved-list (make-list 1 0)) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4295 sort-fold-case) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4296 ;; First create a sorted list of saved faces. |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4297 (mapatoms |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4298 (lambda (symbol) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
4299 (if (and (get symbol 'saved-face) |
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
4300 (eq 'user (car (car-safe (get symbol 'theme-face))))) |
25059
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4301 (nconc saved-list (list symbol))))) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4302 (setq saved-list (sort (cdr saved-list) 'string<)) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4303 ;; The default face must be first, since it affects the others. |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4304 (if (memq 'default saved-list) |
d6081fb56cda
(custom-save-variables, custom-save-faces): Sort
Markus Rost <rost@math.uni-bielefeld.de>
parents:
25058
diff
changeset
|
4305 (setq saved-list (cons 'default (delq 'default saved-list)))) |
17334 | 4306 (unless (bolp) |
4307 (princ "\n")) | |
26653
ea8ae3c8fad5
(custom-save-variables, custom-save-faces): Write a
Dave Love <fx@gnu.org>
parents:
26625
diff
changeset
|
4308 (princ "(custom-set-faces |
47315
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4309 ;; custom-set-faces was added by Custom. |
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4310 ;; If you edit it by hand, you could mess it up, so be careful. |
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4311 ;; Your init file should contain only one such instance. |
655350cd09e5
(custom-save-variables, custom-save-faces):
Richard M. Stallman <rms@gnu.org>
parents:
47168
diff
changeset
|
4312 ;; If there is more than one, they won't work right.\n") |
49556
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4313 (dolist (symbol saved-list) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4314 (let ((spec (car-safe (get symbol 'theme-face))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4315 (value (get symbol 'saved-face)) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4316 (now (not (or (get symbol 'face-defface-spec) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4317 (and (not (custom-facep symbol)) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4318 (not (get symbol 'force-face)))))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4319 (comment (get symbol 'saved-face-comment))) |
67977
03ee9bccbfeb
* custom.el: Move Custom Themes commentary to start of theme code.
Chong Yidong <cyd@stupidchicken.com>
parents:
67972
diff
changeset
|
4320 (when (or (and spec (eq (nth 0 spec) 'user)) |
49556
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4321 comment |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4322 (and (null spec) (get symbol 'saved-face))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4323 ;; Don't print default face here. |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4324 (unless (bolp) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4325 (princ "\n")) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4326 (princ " '(") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4327 (prin1 symbol) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4328 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4329 (prin1 value) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4330 (when (or now comment) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4331 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4332 (prin1 now) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4333 (when comment |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4334 (princ " ") |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4335 (prin1 comment))) |
e8de2a4807e5
(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49521
diff
changeset
|
4336 (princ ")")))) |
26803
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4337 (if (bolp) |
f7c68655bd5d
(custom-save-delete): Delete all occurrences,
Richard M. Stallman <rms@gnu.org>
parents:
26653
diff
changeset
|
4338 (princ " ")) |
17334 | 4339 (princ ")") |
4340 (unless (looking-at "\n") | |
48958
6b4f6412de76
(custom-save-faces): Fix typo.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48949
diff
changeset
|
4341 (princ "\n"))))) |
65225
131c93f081eb
(custom-buffer-sort-alphabetically): Default to t.
Richard M. Stallman <rms@gnu.org>
parents:
64931
diff
changeset
|
4342 |
17334 | 4343 ;;; The Customize Menu. |
4344 | |
17415 | 4345 ;;; Menu support |
4346 | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4347 (defcustom custom-menu-nesting 2 |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4348 "Maximum nesting in custom menus." |
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4349 :type 'integer |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
4350 :group 'custom-menu) |
17334 | 4351 |
4352 (defun custom-face-menu-create (widget symbol) | |
4353 "Ignoring WIDGET, create a menu entry for customization face SYMBOL." | |
4354 (vector (custom-unlispify-menu-entry symbol) | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
4355 `(customize-face ',symbol) |
17334 | 4356 t)) |
4357 | |
4358 (defun custom-variable-menu-create (widget symbol) | |
4359 "Ignoring WIDGET, create a menu entry for customization variable SYMBOL." | |
4360 (let ((type (get symbol 'custom-type))) | |
4361 (unless (listp type) | |
4362 (setq type (list type))) | |
4363 (if (and type (widget-get type :custom-menu)) | |
4364 (widget-apply type :custom-menu symbol) | |
4365 (vector (custom-unlispify-menu-entry symbol) | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
4366 `(customize-variable ',symbol) |
17334 | 4367 t)))) |
4368 | |
17415 | 4369 ;; Add checkboxes to boolean variable entries. |
17334 | 4370 (widget-put (get 'boolean 'widget-type) |
4371 :custom-menu (lambda (widget symbol) | |
4372 (vector (custom-unlispify-menu-entry symbol) | |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
4373 `(customize-variable ',symbol) |
17334 | 4374 ':style 'toggle |
4375 ':selected symbol))) | |
4376 | |
30184
aa305b5e66ed
(custom-group-menu-create, customize-menu-create): Use :filter, per old
Dave Love <fx@gnu.org>
parents:
29879
diff
changeset
|
4377 (defun custom-group-menu-create (widget symbol) |
aa305b5e66ed
(custom-group-menu-create, customize-menu-create): Use :filter, per old
Dave Love <fx@gnu.org>
parents:
29879
diff
changeset
|
4378 "Ignoring WIDGET, create a menu entry for customization group SYMBOL." |
aa305b5e66ed
(custom-group-menu-create, customize-menu-create): Use :filter, per old
Dave Love <fx@gnu.org>
parents:
29879
diff
changeset
|
4379 `( ,(custom-unlispify-menu-entry symbol t) |
aa305b5e66ed
(custom-group-menu-create, customize-menu-create): Use :filter, per old
Dave Love <fx@gnu.org>
parents:
29879
diff
changeset
|
4380 :filter (lambda (&rest junk) |
47168
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
4381 (let ((menu (custom-menu-create ',symbol))) |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
4382 (if (consp menu) (cdr menu) menu))))) |
17334 | 4383 |
17415 | 4384 ;;;###autoload |
4385 (defun custom-menu-create (symbol) | |
17334 | 4386 "Create menu for customization group SYMBOL. |
4387 The menu is in a format applicable to `easy-menu-define'." | |
17415 | 4388 (let* ((item (vector (custom-unlispify-menu-entry symbol) |
17798
f59c9a63514b
Synched with version 1.97.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17703
diff
changeset
|
4389 `(customize-group ',symbol) |
17415 | 4390 t))) |
4391 (if (and (or (not (boundp 'custom-menu-nesting)) | |
4392 (>= custom-menu-nesting 0)) | |
49126
697ca5db73b8
(customize-group, customize-group-other-window):
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49104
diff
changeset
|
4393 (progn |
697ca5db73b8
(customize-group, customize-group-other-window):
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49104
diff
changeset
|
4394 (custom-load-symbol symbol) |
697ca5db73b8
(customize-group, customize-group-other-window):
Markus Rost <rost@math.uni-bielefeld.de>
parents:
49104
diff
changeset
|
4395 (< (length (get symbol 'custom-group)) widget-menu-max-size))) |
17334 | 4396 (let ((custom-prefix-list (custom-prefix-add symbol |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4397 custom-prefix-list)) |
18451
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
4398 (members (custom-sort-items (get symbol 'custom-group) |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
4399 custom-menu-sort-alphabetically |
8eb08560287b
Synched with 1.9936.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18437
diff
changeset
|
4400 custom-menu-order-groups))) |
17334 | 4401 `(,(custom-unlispify-menu-entry symbol t) |
4402 ,item | |
4403 "--" | |
4404 ,@(mapcar (lambda (entry) | |
4405 (widget-apply (if (listp (nth 1 entry)) | |
4406 (nth 1 entry) | |
4407 (list (nth 1 entry))) | |
4408 :custom-menu (nth 0 entry))) | |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18032
diff
changeset
|
4409 members))) |
17334 | 4410 item))) |
4411 | |
4412 ;;;###autoload | |
17415 | 4413 (defun customize-menu-create (symbol &optional name) |
4414 "Return a customize menu for customization group SYMBOL. | |
25685 | 4415 If optional NAME is given, use that as the name of the menu. |
17415 | 4416 Otherwise the menu will be named `Customize'. |
4417 The format is suitable for use with `easy-menu-define'." | |
4418 (unless name | |
4419 (setq name "Customize")) | |
30184
aa305b5e66ed
(custom-group-menu-create, customize-menu-create): Use :filter, per old
Dave Love <fx@gnu.org>
parents:
29879
diff
changeset
|
4420 `(,name |
aa305b5e66ed
(custom-group-menu-create, customize-menu-create): Use :filter, per old
Dave Love <fx@gnu.org>
parents:
29879
diff
changeset
|
4421 :filter (lambda (&rest junk) |
47168
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
4422 (let ((menu (custom-menu-create ',symbol))) |
59fc9e6fd3e8
(custom-unlispify-menu-entry): Don't remove
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46580
diff
changeset
|
4423 (if (consp menu) (cdr menu) menu))))) |
17334 | 4424 |
17415 | 4425 ;;; The Custom Mode. |
4426 | |
59760
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4427 (defvar custom-mode-map |
33110
10379d59910e
(custom-mode-map): Switch back to a sparse keymap.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33024
diff
changeset
|
4428 ;; This keymap should be dense, but a dense keymap would prevent inheriting |
10379d59910e
(custom-mode-map): Switch back to a sparse keymap.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33024
diff
changeset
|
4429 ;; "\r" bindings from the parent map. |
59760
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4430 ;; Actually, this misfeature of dense keymaps was fixed on 2001-11-26. |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4431 (let ((map (make-keymap))) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4432 (set-keymap-parent map widget-keymap) |
71847
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4433 (define-key map [remap self-insert-command] |
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4434 'custom-no-edit) |
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4435 (define-key map "\^m" 'custom-no-edit) |
59760
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4436 (define-key map " " 'scroll-up) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4437 (define-key map "\177" 'scroll-down) |
64494
ca001bc998df
(custom-mode-map): Bind `C-c C-c' to `Custom-set'.
Juri Linkov <juri@jurta.org>
parents:
64151
diff
changeset
|
4438 (define-key map "\C-c\C-c" 'Custom-set) |
59760
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4439 (define-key map "\C-x\C-s" 'Custom-save) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4440 (define-key map "q" 'Custom-buffer-done) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4441 (define-key map "u" 'Custom-goto-parent) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4442 (define-key map "n" 'widget-forward) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4443 (define-key map "p" 'widget-backward) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4444 map) |
a7a34c3cb55e
(custom-mode-map): Make it dense.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59759
diff
changeset
|
4445 "Keymap for `custom-mode'.") |
18460
a2be4f4ac8ed
(Custom-move-and-invoke): New command.
Richard M. Stallman <rms@gnu.org>
parents:
18451
diff
changeset
|
4446 |
71847
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4447 (defun custom-no-edit () |
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4448 "Refuse to allow editing of Custom buffer." |
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4449 (interactive) |
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4450 (error "You can't edit this part of the Custom buffer")) |
61f3d6be1e92
(custom-no-edit): New command.
Richard M. Stallman <rms@gnu.org>
parents:
71438
diff
changeset
|
4451 |
25685 | 4452 (easy-menu-define Custom-mode-menu |
17415 | 4453 custom-mode-map |
4454 "Menu used in customization buffers." | |
4455 `("Custom" | |
18364
01666331d10f
Synched with 1.9930.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18362
diff
changeset
|
4456 ,(customize-menu-create 'customize) |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
4457 ["Set" Custom-set t] |
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
4458 ["Save" Custom-save t] |
68139
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
4459 ["Undo Edits" Custom-reset-current t] |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
4460 ["Reset to Saved" Custom-reset-saved t] |
058a6e577709
(custom-reset-menu, custom-buffer-create-internal)
Luc Teirlinck <teirllm@auburn.edu>
parents:
68109
diff
changeset
|
4461 ["Erase Customization" Custom-reset-standard t] |
64494
ca001bc998df
(custom-mode-map): Bind `C-c C-c' to `Custom-set'.
Juri Linkov <juri@jurta.org>
parents:
64151
diff
changeset
|
4462 ["Info" (info "(emacs)Easy Customization") t])) |
17415 | 4463 |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4464 (defvar custom-field-keymap |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4465 (let ((map (copy-keymap widget-field-keymap))) |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4466 (define-key map "\C-c\C-c" 'Custom-set) |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4467 (define-key map "\C-x\C-s" 'Custom-save) |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4468 map) |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4469 "Keymap used inside editable fields in customization buffers.") |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4470 |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4471 (widget-put (get 'editable-field 'widget-type) :keymap custom-field-keymap) |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4472 |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4473 (defun Custom-goto-parent () |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4474 "Go to the parent group listed at the top of this buffer. |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4475 If several parents are listed, go to the first of them." |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4476 (interactive) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4477 (save-excursion |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4478 (goto-char (point-min)) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4479 (if (search-forward "\nGo to parent group: " nil t) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4480 (let* ((button (get-char-property (point) 'button)) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4481 (parent (downcase (widget-get button :tag)))) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4482 (customize-group parent))))) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4483 |
17415 | 4484 (defcustom custom-mode-hook nil |
25685 | 4485 "Hook called when entering Custom mode." |
17415 | 4486 :type 'hook |
18244
909a0f9169b8
Synched with 1.9914.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
4487 :group 'custom-buffer ) |
17415 | 4488 |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4489 (defun custom-state-buffer-message (widget) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4490 (if (eq (widget-get (widget-get widget :parent) :custom-state) 'modified) |
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4491 (message "To install your edits, invoke [State] and choose the Set operation"))) |
18430
a8ae9c653696
(custom-group-visibility): Widget type
Richard M. Stallman <rms@gnu.org>
parents:
18373
diff
changeset
|
4492 |
17415 | 4493 (defun custom-mode () |
4494 "Major mode for editing customization buffers. | |
4495 | |
4496 The following commands are available: | |
4497 | |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4498 \\<widget-keymap>\ |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4499 Move to next button, link or editable field. \\[widget-forward] |
68406
5020a0c4a1aa
(custom-mode): Doc: Use advertised-widget-backward.
Richard M. Stallman <rms@gnu.org>
parents:
68343
diff
changeset
|
4500 Move to previous button, link or editable field. \\[advertised-widget-backward] |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4501 \\<custom-field-keymap>\ |
19022
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
4502 Complete content of editable text field. \\[widget-complete] |
904dcdbb8576
Synched with 1.9951.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18856
diff
changeset
|
4503 \\<custom-mode-map>\ |
68913
08407ff48591
* cus-edit.el (custom-mode): Update docstring.
Chong Yidong <cyd@stupidchicken.com>
parents:
68911
diff
changeset
|
4504 Invoke button under the mouse pointer. \\[widget-button-click] |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4505 Invoke button under point. \\[widget-button-press] |
67970
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
4506 Set all options from current text. \\[Custom-set] |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
4507 Make values in current text permanent. \\[Custom-save] |
68343
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4508 Make text match actual option values. \\[Custom-reset-current] |
05dbd20a248e
(custom-buffer-create-internal): Use widget type
Juri Linkov <juri@jurta.org>
parents:
68278
diff
changeset
|
4509 Reset options to permanent settings. \\[Custom-reset-saved] |
67970
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
4510 Erase customizations; set options |
ece93c7b34d4
(Custom-set, Custom-save): Ask for confirmation.
Richard M. Stallman <rms@gnu.org>
parents:
67961
diff
changeset
|
4511 and buffer text to the standard values. \\[Custom-reset-standard] |
17415 | 4512 |
4513 Entry to this mode calls the value of `custom-mode-hook' | |
4514 if that value is non-nil." | |
4515 (kill-all-local-variables) | |
4516 (setq major-mode 'custom-mode | |
4517 mode-name "Custom") | |
4518 (use-local-map custom-mode-map) | |
18435
2f906938425b
(Custom-set): Renamed from custom-set.
Richard M. Stallman <rms@gnu.org>
parents:
18430
diff
changeset
|
4519 (easy-menu-add Custom-mode-menu) |
17415 | 4520 (make-local-variable 'custom-options) |
50283
73ab8e5b6d65
2003-03-24 Luc Teirlinck <teirllm@mail.auburn.edu>
John Paul Wallington <jpw@pobox.com>
parents:
50077
diff
changeset
|
4521 (make-local-variable 'custom-local-buffer) |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4522 (make-local-variable 'widget-documentation-face) |
63194
acd4cec2decf
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-365
Miles Bader <miles@gnu.org>
parents:
62722
diff
changeset
|
4523 (setq widget-documentation-face 'custom-documentation) |
18571
1beba85e8c62
(custom-buffer-create-internal): New arg DESCRIPTION
Richard M. Stallman <rms@gnu.org>
parents:
18562
diff
changeset
|
4524 (make-local-variable 'widget-button-face) |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
4525 (setq widget-button-face custom-button) |
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
4526 (set (make-local-variable 'widget-button-pressed-face) custom-button-pressed) |
67961
52f526ce11f6
* cus-edit.el (custom-button-mouse): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
67941
diff
changeset
|
4527 (set (make-local-variable 'widget-mouse-face) custom-button-mouse) |
66336
d9a2701e02cd
* cus-edit.el (custom-button, custom-button-pressed): New vars.
Chong Yidong <cyd@stupidchicken.com>
parents:
66171
diff
changeset
|
4528 |
25685 | 4529 ;; When possible, use relief for buttons, not bracketing. This test |
4530 ;; may not be optimal. | |
4531 (when custom-raised-buttons | |
4532 (set (make-local-variable 'widget-push-button-prefix) "") | |
4533 (set (make-local-variable 'widget-push-button-suffix) "") | |
4534 (set (make-local-variable 'widget-link-prefix) "") | |
4535 (set (make-local-variable 'widget-link-suffix) "")) | |
18437
cbaf72286a2e
(custom-documentation-face): New face.
Richard M. Stallman <rms@gnu.org>
parents:
18436
diff
changeset
|
4536 (add-hook 'widget-edit-functions 'custom-state-buffer-message nil t) |
62722
44ff539fa276
(custom-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62211
diff
changeset
|
4537 (run-mode-hooks 'custom-mode-hook)) |
17334 | 4538 |
32904
2109c5fb0c3f
(custom-mode): Add `special' mode-class property.
Dave Love <fx@gnu.org>
parents:
32883
diff
changeset
|
4539 (put 'custom-mode 'mode-class 'special) |
2109c5fb0c3f
(custom-mode): Add `special' mode-class property.
Dave Love <fx@gnu.org>
parents:
32883
diff
changeset
|
4540 |
71438
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4541 (dolist (regexp |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4542 '("^No user option defaults have been changed since Emacs " |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4543 "^Invalid face:? " |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4544 "^No \\(?:customized\\|rogue\\|saved\\) user options" |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4545 "^No customizable items matching " |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4546 "^There are unset changes" |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4547 "^Cannot set hidden variable" |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4548 "^No \\(?:saved\\|backup\\) value for " |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4549 "^No standard setting known for " |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4550 "^No standard setting for this face" |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4551 "^Saving settings from \"emacs -q\" would overwrite existing customizations")) |
2c067711ec9e
(customize-apropos): A better error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71390
diff
changeset
|
4552 (add-to-list 'debug-ignored-errors regexp)) |
28130 | 4553 |
17334 | 4554 ;;; The End. |
4555 | |
4556 (provide 'cus-edit) | |
4557 | |
59759
c8a0d09474af
(customize-group-other-window, custom-buffer-create-other-window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59434
diff
changeset
|
4558 ;; arch-tag: 64533aa4-1b1a-48c3-8812-f9dc718e8a6f |
25685 | 4559 ;;; cus-edit.el ends here |