(alternativnyj): Use new table.
[emacs.git] / lisp / cus-start.el
blobbb88d87007996112d17da89478586ecc18c8c1ea
1 ;;; cus-start.el --- define customization properties of builtins
2 ;;
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Keywords: internal
8 ;; This file is part of GNU Emacs.
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.
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.
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.
25 ;;; Commentary:
27 ;; This file adds customize support for built-in variables.
29 ;; While dumping Emacs, this file is loaded, but it only records
30 ;; the standard values; it does not do the rest of the job.
31 ;; Later on, if the user makes a customization buffer,
32 ;; this file is loaded again with (require 'cus-start);
33 ;; then it does the whole job.
35 ;;; Code:
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)
48 (enable-multibyte-characters mule boolean)
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-ellipses display boolean)
56 (transient-mark-mode editing-basics boolean)
57 (indicate-empty-lines display boolean "21.1")
58 (scroll-up-aggressively windows boolean "21.1")
59 (scroll-down-aggressively windows boolean "21.1")
60 ;; callint.c
61 (mark-even-if-inactive editing-basics boolean)
62 ;; callproc.c
63 (shell-file-name execute file)
64 (exec-path execute
65 (repeat (choice (const :tag "default" nil)
66 (file :format "%v"))))
67 ;; charset.c
68 (charset-map-directory installation directory)
69 ;; coding.c
70 (inhibit-eol-conversion mule boolean)
71 (eol-mnemonic-undecided mule string)
72 (eol-mnemonic-unix mule string)
73 (eol-mnemonic-dos mule string)
74 (eol-mnemonic-mac mule string)
75 (file-coding-system-alist
76 mule
77 (alist
78 :key-type (regexp :tag "File regexp")
79 :value-type (choice
80 :value (undecided . undecided)
81 (cons :tag "Encoding/decoding pair"
82 :value (undecided . undecided)
83 (coding-system :tag "Decoding")
84 (coding-system :tag "Encoding"))
85 (coding-system :tag "Single coding system"
86 :value undecided)
87 (function :value ignore))))
88 (selection-coding-system mule coding-system)
89 ;; dired.c
90 (completion-ignored-extensions dired
91 (repeat (string :format "%v")))
92 ;; dispnew.c
93 (baud-rate display integer)
94 (inverse-video display boolean)
95 (visible-bell display boolean)
96 (no-redraw-on-reenter display boolean)
97 ;; editfns.c
98 (user-full-name mail string)
99 ;; eval.c
100 (max-specpdl-size limits integer)
101 (max-lisp-eval-depth limits integer)
102 (stack-trace-on-error debug
103 (choice (const :tag "off")
104 (repeat :menu-tag "When"
105 :value (nil)
106 (symbol :format "%v"))
107 (const :tag "always" t)))
108 (debug-on-error debug
109 (choice (const :tag "off")
110 (repeat :menu-tag "When"
111 :value (nil)
112 (symbol :format "%v"))
113 (const :tag "always" t)))
114 (debug-ignored-errors debug (repeat (choice symbol regexp)))
115 (debug-on-quit debug
116 (choice (const :tag "off")
117 (repeat :menu-tag "When"
118 :value (nil)
119 (symbol :format "%v"))
120 (const :tag "always" t)))
121 ;; fileio.c
122 (insert-default-directory minibuffer boolean)
123 ;; fns.c
124 (use-dialog-box menu boolean "21.1")
125 ;; frame.c
126 (default-frame-alist frames
127 (repeat (cons :format "%v"
128 (symbol :tag "Parameter")
129 (sexp :tag "Value"))))
130 (mouse-highlight mouse (choice (const :tag "disabled" nil)
131 (const :tag "always shown" t)
132 (other :tag "hidden by keypress" 1)))
133 ;; indent.c
134 (indent-tabs-mode fill boolean)
135 ;; keyboard.c
136 (meta-prefix-char keyboard character)
137 (auto-save-interval auto-save integer)
138 (auto-save-timeout auto-save (choice (const :tag "off" nil)
139 (integer :format "%v")))
140 (echo-keystrokes minibuffer number)
141 (polling-period keyboard integer)
142 (double-click-time mouse (restricted-sexp
143 :match-alternatives (integerp 'nil 't)))
144 (inhibit-local-menu-bar-menus menu boolean)
145 (help-char keyboard character)
146 (help-event-list keyboard (repeat (sexp :format "%v")))
147 (menu-prompting menu boolean)
148 (suggest-key-bindings keyboard (choice (const :tag "off" nil)
149 (integer :tag "time" 2)
150 (other :tag "on")))
152 ;; This is not good news because it will use the wrong
153 ;; version-specific directories when you upgrade. We need
154 ;; customization of the front of the list, maintaining the standard
155 ;; value intact at the back.
156 ;;; (load-path environment
157 ;;; (repeat (choice :tag "[Current dir?]"
158 ;;; :format "%[Current dir?%] %v"
159 ;;; (const :tag " current dir" nil)
160 ;;; (directory :format "%v"))))
161 ;; minibuf.c
162 (completion-auto-help minibuffer boolean)
163 (enable-recursive-minibuffers minibuffer boolean)
164 (history-length minibuffer
165 (choice (const :tag "Infinite" t)
166 integer))
167 (minibuffer-prompt-properties
168 minibuffer
169 (list
170 (checklist :inline t
171 (const :tag "Read-Only"
172 :doc "Prevent prompt from being modified"
173 :format "%t%n%h"
174 :inline t
175 (read-only t))
176 (const :tag "Inviolable"
177 :doc "Prevent point from ever entering prompt"
178 :format "%t%n%h"
179 :inline t
180 (point-entered minibuffer-avoid-prompt)))
181 (repeat :inline t
182 :tag "Other Properties"
183 (list :inline t
184 :format "%v"
185 (symbol :tag "Property")
186 (sexp :tag "Value"))))
187 "21.1")
188 (minibuffer-auto-raise minibuffer boolean)
189 ;; options property set at end
190 (read-buffer-function minibuffer
191 (choice (const nil)
192 (function-item iswitchb-read-buffer)
193 function))
194 ;; msdos.c
195 (dos-unsupported-char-glyph display integer)
196 ;; process.c
197 (delete-exited-processes processes-basics boolean)
198 ;; syntax.c
199 (parse-sexp-ignore-comments editing-basics boolean)
200 (words-include-escapes editing-basics boolean)
201 ;; window.c
202 (temp-buffer-show-function windows (choice (const nil) function))
203 (display-buffer-function windows (choice (const nil) function))
204 (pop-up-frames frames boolean)
205 (pop-up-frame-function frames function)
206 (special-display-buffer-names
207 frames
208 (repeat (choice :tag "Buffer"
209 :value ""
210 (string :format "%v")
211 (cons :tag "With attributes"
212 :format "%v"
213 :value ("" . nil)
214 (string :format "%v")
215 (repeat :tag "Attributes"
216 (cons :format "%v"
217 (symbol :tag "Parameter")
218 (sexp :tag "Value")))))))
219 (special-display-regexps
220 frames
221 (repeat (choice :tag "Buffer"
222 :value ""
223 (regexp :format "%v")
224 (cons :tag "With attributes"
225 :format "%v"
226 :value ("" . nil)
227 (regexp :format "%v")
228 (repeat :tag "Attributes"
229 (cons :format "%v"
230 (symbol :tag "Parameter")
231 (sexp :tag "Value")))))))
232 (special-display-function frames function)
233 (same-window-buffer-names windows (repeat (string :format "%v")))
234 (same-window-regexps windows (repeat (regexp :format "%v")))
235 (pop-up-windows windows boolean)
236 (even-window-heights windows boolean)
237 (next-screen-context-lines windows integer)
238 (split-height-threshold windows integer)
239 (window-min-height windows integer)
240 (window-min-width windows integer)
241 (scroll-preserve-screen-position windows boolean)
242 (display-buffer-reuse-frames windows boolean "21.1")
243 ;; xdisp.c
244 (scroll-step windows integer)
245 (scroll-conservatively windows integer)
246 (scroll-margin windows integer)
247 (automatic-hscroll-margin windows integer "21.3")
248 (automatic-hscroll-step windows number "21.3")
249 (truncate-partial-width-windows display boolean)
250 (mode-line-inverse-video modeline boolean)
251 (mode-line-in-non-selected-windows modeline boolean "21.3")
252 (line-number-display-limit display
253 (choice integer
254 (const :tag "No limit" nil)))
255 (highlight-nonselected-windows display boolean)
256 (message-log-max debug (choice (const :tag "Disable" nil)
257 (integer :menu-tag "lines"
258 :format "%v")
259 (other :tag "Unlimited" t)))
260 (unibyte-display-via-language-environment mule boolean)
261 ;; xfaces.c
262 (scalable-fonts-allowed display boolean)
263 ;; xfns.c
264 (x-bitmap-file-path installation
265 (repeat (directory :format "%v")))
266 ;; xterm.c
267 (x-autoselect-window display boolean "21.3")
268 (x-use-underline-position-properties display boolean "21.3")
269 (x-stretch-cursor display boolean "21.1")))
270 this symbol group type native-p version
271 ;; This function turns a value
272 ;; into an expression which produces that value.
273 (quoter (lambda (sexp)
274 (if (or (memq sexp '(t nil))
275 (keywordp sexp)
276 (and (listp sexp)
277 (memq (car sexp) '(lambda)))
278 (stringp sexp)
279 ;; (and (fboundp 'characterp)
280 ;; (characterp sexp))
281 (numberp sexp))
282 sexp
283 (list 'quote sexp)))))
284 (while all
285 (setq this (car all)
286 all (cdr all)
287 symbol (nth 0 this)
288 group (nth 1 this)
289 type (nth 2 this)
290 version (nth 3 this)
291 ;; Don't complain about missing variables which are
292 ;; irrelevant to this platform.
293 native-p (save-match-data
294 (cond
295 ((string-match "\\`dos-" (symbol-name symbol))
296 (eq system-type 'ms-dos))
297 ((string-match "\\`w32-" (symbol-name symbol))
298 (eq system-type 'windows-nt))
299 ((string-match "\\`x-" (symbol-name symbol))
300 (fboundp 'x-create-frame))
301 (t t))))
302 (if (not (boundp symbol))
303 ;; If variables are removed from C code, give an error here!
304 (and native-p
305 (message "Note, built-in variable `%S' not bound" symbol))
306 ;; Save the standard value, unless we already did.
307 (or (get symbol 'standard-value)
308 (put symbol 'standard-value
309 (list (funcall quoter (default-value symbol)))))
310 ;; If this is NOT while dumping Emacs,
311 ;; set up the rest of the customization info.
312 (unless purify-flag
313 ;; Add it to the right group.
314 (custom-add-to-group group symbol 'custom-variable)
315 ;; Set the type.
316 (put symbol 'custom-type type)
317 (put symbol 'custom-version version)))))
319 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
321 ;; Record cus-start as loaded
322 ;; if we have set up all the info that we can set up.
323 ;; Don't record cus-start as loaded
324 ;; if we have set up only the standard values.
325 (unless purify-flag
326 (provide 'cus-start))
328 ;;; cus-start.el ends here