Mercurial > emacs
annotate lisp/cus-start.el @ 18534:cf074bab6a2d
(selection_data_to_lisp_data): Call free instead of
xfree.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 02 Jul 1997 12:53:50 +0000 |
parents | dd3b72558628 |
children | f3b080ae4fca |
rev | line source |
---|---|
17416 | 1 ;;; cus-start.el --- define customization properties of builtins. |
2 ;; | |
3 ;; Copyright (C) 1997 Free Software Foundation, Inc. | |
4 ;; | |
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
6 ;; Keywords: internal | |
7 | |
17520 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
17416 | 25 ;;; Commentary: |
26 ;; | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
27 ;; This file adds customize support for built-in variables. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
28 |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
29 ;; While dumping Emacs, this file is loaded, but it only records |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
30 ;; the standard values; it does not do the rest of the job. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
31 ;; Later on, if the user makes a customization buffer, |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
32 ;; this file is loaded again with (require 'cus-start); |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
33 ;; then it does the whole job. |
17416 | 34 |
35 ;;; Code: | |
36 | |
37 (let ((all '(;; abbrev.c | |
38 (abbrev-all-caps abbrev-mode boolean) | |
39 (pre-abbrev-expand-hook abbrev-mode hook) | |
40 ;; alloc.c | |
41 (gc-cons-threshold alloc integer) | |
42 (undo-limit undo integer) | |
43 (undo-strong-limit undo integer) | |
44 (garbage-collection-messages alloc boolean) | |
45 ;; buffer.c | |
46 (mode-line-format modeline sexp) ;Hard to do right. | |
47 (default-major-mode internal function) | |
18496
dd3b72558628
(enable-multibyte-characters): Customize.
Richard M. Stallman <rms@gnu.org>
parents:
18478
diff
changeset
|
48 (enable-multibyte-characters mule boolean) |
17416 | 49 (case-fold-search matching boolean) |
50 (fill-column fill integer) | |
51 (left-margin fill integer) | |
52 (tab-width editing-basics integer) | |
53 (ctl-arrow display boolean) | |
54 (truncate-lines display boolean) | |
55 (selective-display display | |
56 (choice (const :tag "off" nil) | |
57 (integer :tag "space" | |
58 :format "%v" | |
59 1) | |
60 (const :tag "on" t))) | |
61 (selective-display-ellipses display boolean) | |
62 (transient-mark-mode editing-basics boolean) | |
63 ;; callint.c | |
64 (mark-even-if-inactive editing-basics boolean) | |
65 ;; callproc.c | |
66 (shell-file-name execute file) | |
67 (exec-path execute | |
68 (repeat (choice (const :tag "default" nil) | |
69 (file :format "%v")))) | |
70 ;; dired.c | |
71 (completion-ignored-extensions dired | |
72 (repeat (string :format "%v"))) | |
73 ;; dispnew.el | |
74 (baud-rate display integer) | |
75 (inverse-video display boolean) | |
76 (visible-bell display boolean) | |
77 (no-redraw-on-reenter display boolean) | |
78 ;; editfns.c | |
79 (user-full-name mail string) | |
80 ;; eval.c | |
81 (max-specpdl-size limits integer) | |
82 (max-lisp-eval-depth limits integer) | |
83 (stack-trace-on-error debug | |
84 (choice (const :tag "off") | |
85 (repeat :menu-tag "When" | |
86 :value (nil) | |
87 (symbol :format "%v")) | |
88 (const :tag "always" t))) | |
89 (debug-on-error debug | |
90 (choice (const :tag "off") | |
91 (repeat :menu-tag "When" | |
92 :value (nil) | |
93 (symbol :format "%v")) | |
94 (const :tag "always" t))) | |
95 (debug-ignored-errors debug (repeat (choice symbol regexp))) | |
96 (debug-on-quit debug choice) | |
97 ;; fileio.c | |
98 (insert-default-directory minibuffer boolean) | |
99 ;; frame.c | |
100 (default-frame-alist frames | |
101 (repeat (cons :format "%v" | |
102 (symbol :tag "Parameter") | |
103 (sexp :tag "Value")))) | |
104 ;; indent.c | |
105 (indent-tabs-mode fill boolean) | |
106 ;; keyboard.c | |
107 (meta-prefix-char keyboard character) | |
108 (auto-save-interval auto-save integer) | |
109 (auto-save-timeout auto-save (choice (const :tag "off" nil) | |
110 (integer :format "%v"))) | |
111 (echo-keystrokes minibuffer boolean) | |
112 (polling-period keyboard integer) | |
18478
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
113 (double-click-time mouse (restricted-sexp |
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
114 :match-alternatives (integerp 'nil 't))) |
17416 | 115 (inhibit-local-menu-bar-menus menu boolean) |
116 (help-char keyboard character) | |
117 (help-event-list keyboard (repeat (sexp :format "%v"))) | |
118 (menu-prompting menu boolean) | |
119 (suggest-key-bindings keyboard (choice (const :tag "off" nil) | |
120 (integer :tag "time" 2) | |
121 (sexp :tag "on" | |
122 :format "%t"))) | |
123 ;; lread.c | |
124 (load-path environment | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
125 (repeat (choice :tag "[Current dir?]" |
18478
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
126 :format "%[Current dir?%] %v" |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
127 (const :tag " current dir" nil) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
128 (directory :format "%v")))) |
17416 | 129 ;; minibuf.c |
130 (completion-auto-help minibuffer boolean) | |
131 (enable-recursive-minibuffers minibuffer boolean) | |
132 (minibuffer-auto-raise minibuffer boolean) | |
133 ;; process.c | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
134 (delete-exited-processes processes-basics boolean) |
17416 | 135 ;; syntax.c |
136 (parse-sexp-ignore-comments editing-basics boolean) | |
137 (words-include-escapes editing-basics boolean) | |
138 ;; window.c | |
139 (temp-buffer-show-function windows function) | |
140 (display-buffer-function windows function) | |
141 (pop-up-frames frames boolean) | |
142 (pop-up-frame-function frames function) | |
143 (special-display-buffer-names | |
144 frames | |
145 (repeat (choice :tag "Buffer" | |
146 :value "" | |
147 (string :format "%v") | |
148 (cons :tag "With attributes" | |
149 :format "%v" | |
150 :value ("" . nil) | |
151 (string :format "%v") | |
152 (repeat :tag "Attributes" | |
153 (cons :format "%v" | |
154 (symbol :tag "Parameter") | |
155 (sexp :tag "Value"))))))) | |
156 (special-display-regexps | |
157 frames | |
158 (repeat (choice :tag "Buffer" | |
159 :value "" | |
160 (regexp :format "%v") | |
161 (cons :tag "With attributes" | |
162 :format "%v" | |
163 :value ("" . nil) | |
164 (regexp :format "%v") | |
165 (repeat :tag "Attributes" | |
166 (cons :format "%v" | |
167 (symbol :tag "Parameter") | |
168 (sexp :tag "Value"))))))) | |
169 (special-display-function frames function) | |
170 (same-window-buffer-names windows (repeat (string :format "%v"))) | |
171 (same-window-regexps windows (repeat (regexp :format "%v"))) | |
172 (pop-up-windows windows boolean) | |
173 (next-screen-context-lines windows boolean) | |
174 (split-height-threshold windows integer) | |
175 (window-min-height windows integer) | |
176 (window-min-width windows integer) | |
177 ;; xdisp.c | |
178 (scroll-step windows integer) | |
179 (truncate-partial-width-windows display boolean) | |
180 (mode-line-inverse-video modeline boolean) | |
181 (line-number-display-limit display integer) | |
182 (highlight-nonselected-windows display boolean) | |
183 (message-log-max debug (choice (const :tag "Disable" nil) | |
184 (integer :menu-tag "lines" | |
185 :format "%v") | |
186 (const :tag "Unlimited" t))) | |
187 ;; xfns.c | |
188 (x-bitmap-file-path installation | |
189 (repeat (directory :format "%v"))))) | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
190 this symbol group type |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
191 ;; This function turns a value |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
192 ;; into an expression which produces that value. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
193 (quoter (lambda (sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
194 (if (or (memq sexp '(t nil)) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
195 (and (symbolp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
196 (eq (aref (symbol-name sexp) 0) ?:)) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
197 (and (listp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
198 (memq (car sexp) '(lambda))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
199 (stringp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
200 (numberp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
201 (and (fboundp 'characterp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
202 (characterp sexp))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
203 sexp |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
204 (list 'quote sexp))))) |
17416 | 205 (while all |
206 (setq this (car all) | |
207 all (cdr all) | |
208 symbol (nth 0 this) | |
209 group (nth 1 this) | |
210 type (nth 2 this)) | |
211 (if (not (boundp symbol)) | |
212 ;; If variables are removed from C code, give an error here! | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
213 (message "Built-in variable `%S' not bound" symbol) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
214 ;; Save the standard value, unless we already did. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
215 (or (get symbol 'standard-value) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
216 (put symbol 'standard-value |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
217 (list (funcall quoter (default-value symbol))))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
218 ;; If this is NOT while dumping Emacs, |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
219 ;; set up the rest of the customization info. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
220 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
221 ;; Add it to the right group. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
222 (custom-add-to-group group symbol 'custom-variable) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
223 ;; Set the type. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
224 (put symbol 'custom-type type))))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
225 |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
226 ;; Record cus-start as loaded |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
227 ;; if we have set up all the info that we can set up. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
228 ;; Don't record cus-start as loaded |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
229 ;; if we have set up only the standard values. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
230 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
231 (provide 'cus-start)) |
17416 | 232 |
233 ;;; cus-start.el ends here. |