]> code.delx.au - gnu-emacs/blob - lisp/cus-start.el
*** empty log message ***
[gnu-emacs] / lisp / cus-start.el
1 ;;; cus-start.el --- define customization properties of builtins.
2 ;;
3 ;; Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Keywords: internal
7
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
25 ;;; Commentary:
26 ;;
27 ;; This file adds customize support for built-in variables.
28
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.
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)
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 ;; coding.c
68 (inhibit-eol-conversion mule boolean)
69 (eol-mnemonic-undecided mule string)
70 (eol-mnemonic-unix mule string)
71 (eol-mnemonic-dos mule string)
72 (eol-mnemonic-mac mule string)
73 ;; dired.c
74 (completion-ignored-extensions dired
75 (repeat (string :format "%v")))
76 ;; dispnew.c
77 (baud-rate display integer)
78 (inverse-video display boolean)
79 (visible-bell display boolean)
80 (no-redraw-on-reenter display boolean)
81 ;; editfns.c
82 (user-full-name mail string)
83 ;; eval.c
84 (max-specpdl-size limits integer)
85 (max-lisp-eval-depth limits integer)
86 (stack-trace-on-error debug
87 (choice (const :tag "off")
88 (repeat :menu-tag "When"
89 :value (nil)
90 (symbol :format "%v"))
91 (const :tag "always" t)))
92 (debug-on-error debug
93 (choice (const :tag "off")
94 (repeat :menu-tag "When"
95 :value (nil)
96 (symbol :format "%v"))
97 (const :tag "always" t)))
98 (debug-ignored-errors debug (repeat (choice symbol regexp)))
99 (debug-on-quit debug
100 (choice (const :tag "off")
101 (repeat :menu-tag "When"
102 :value (nil)
103 (symbol :format "%v"))
104 (const :tag "always" t)))
105 ;; fileio.c
106 (insert-default-directory minibuffer boolean)
107 ;; fns.c
108 (use-dialog-box menu boolean "21.1")
109 ;; frame.c
110 (default-frame-alist frames
111 (repeat (cons :format "%v"
112 (symbol :tag "Parameter")
113 (sexp :tag "Value"))))
114 ;; indent.c
115 (indent-tabs-mode fill boolean)
116 ;; keyboard.c
117 (meta-prefix-char keyboard character)
118 (auto-save-interval auto-save integer)
119 (auto-save-timeout auto-save (choice (const :tag "off" nil)
120 (integer :format "%v")))
121 (echo-keystrokes minibuffer number)
122 (polling-period keyboard integer)
123 (double-click-time mouse (restricted-sexp
124 :match-alternatives (integerp 'nil 't)))
125 (inhibit-local-menu-bar-menus menu boolean)
126 (help-char keyboard character)
127 (help-event-list keyboard (repeat (sexp :format "%v")))
128 (menu-prompting menu boolean)
129 (suggest-key-bindings keyboard (choice (const :tag "off" nil)
130 (integer :tag "time" 2)
131 (other :tag "on")))
132 ;; lread.c
133
134 ;; This is not good news because it will use the wrong
135 ;; version-specific directories when you upgrade. We need
136 ;; customization of the front of the list, maintaining the standard
137 ;; value intact at the back.
138 ;;; (load-path environment
139 ;;; (repeat (choice :tag "[Current dir?]"
140 ;;; :format "%[Current dir?%] %v"
141 ;;; (const :tag " current dir" nil)
142 ;;; (directory :format "%v"))))
143 ;; minibuf.c
144 (completion-auto-help minibuffer boolean)
145 (enable-recursive-minibuffers minibuffer boolean)
146 (minibuffer-auto-raise minibuffer boolean)
147 ;; msdos.c
148 (dos-unsupported-char-glyph display integer)
149 ;; process.c
150 (delete-exited-processes processes-basics boolean)
151 ;; syntax.c
152 (parse-sexp-ignore-comments editing-basics boolean)
153 (words-include-escapes editing-basics boolean)
154 ;; window.c
155 (temp-buffer-show-function windows function)
156 (display-buffer-function windows function)
157 (pop-up-frames frames boolean)
158 (pop-up-frame-function frames function)
159 (special-display-buffer-names
160 frames
161 (repeat (choice :tag "Buffer"
162 :value ""
163 (string :format "%v")
164 (cons :tag "With attributes"
165 :format "%v"
166 :value ("" . nil)
167 (string :format "%v")
168 (repeat :tag "Attributes"
169 (cons :format "%v"
170 (symbol :tag "Parameter")
171 (sexp :tag "Value")))))))
172 (special-display-regexps
173 frames
174 (repeat (choice :tag "Buffer"
175 :value ""
176 (regexp :format "%v")
177 (cons :tag "With attributes"
178 :format "%v"
179 :value ("" . nil)
180 (regexp :format "%v")
181 (repeat :tag "Attributes"
182 (cons :format "%v"
183 (symbol :tag "Parameter")
184 (sexp :tag "Value")))))))
185 (special-display-function frames function)
186 (same-window-buffer-names windows (repeat (string :format "%v")))
187 (same-window-regexps windows (repeat (regexp :format "%v")))
188 (pop-up-windows windows boolean)
189 (next-screen-context-lines windows integer)
190 (split-height-threshold windows integer)
191 (window-min-height windows integer)
192 (window-min-width windows integer)
193 (scroll-preserve-screen-position windows boolean)
194 ;; xdisp.c
195 (scroll-step windows integer)
196 (scroll-conservatively windows integer)
197 (scroll-margin windows integer)
198 (truncate-partial-width-windows display boolean)
199 (mode-line-inverse-video modeline boolean)
200 (line-number-display-limit display
201 (choice integer
202 (const :tag "No limit" nil)))
203 (highlight-nonselected-windows display boolean)
204 (message-log-max debug (choice (const :tag "Disable" nil)
205 (integer :menu-tag "lines"
206 :format "%v")
207 (other :tag "Unlimited" t)))
208 (unibyte-display-via-language-environment mule boolean)
209 ;; xfns.c
210 (x-bitmap-file-path installation
211 (repeat (directory :format "%v")))
212 ;; xterm.c
213 (x-stretch-cursor display boolean "21.1")))
214 this symbol group type native-p version
215 ;; This function turns a value
216 ;; into an expression which produces that value.
217 (quoter (lambda (sexp)
218 (if (or (memq sexp '(t nil))
219 (keywordp sexp)
220 (and (listp sexp)
221 (memq (car sexp) '(lambda)))
222 (stringp sexp)
223 ;; (and (fboundp 'characterp)
224 ;; (characterp sexp))
225 (numberp sexp))
226 sexp
227 (list 'quote sexp)))))
228 (while all
229 (setq this (car all)
230 all (cdr all)
231 symbol (nth 0 this)
232 group (nth 1 this)
233 type (nth 2 this)
234 version (nth 3 this)
235 ;; Don't complain about missing variables which are
236 ;; irrelevant to this platform.
237 native-p (save-match-data
238 (cond
239 ((string-match "\\`dos-" (symbol-name symbol))
240 (eq system-type 'ms-dos))
241 ((string-match "\\`w32-" (symbol-name symbol))
242 (eq system-type 'windows-nt))
243 (t t))))
244 (if (not (boundp symbol))
245 ;; If variables are removed from C code, give an error here!
246 (and native-p
247 (message "Note, built-in variable `%S' not bound" symbol))
248 ;; Save the standard value, unless we already did.
249 (or (get symbol 'standard-value)
250 (put symbol 'standard-value
251 (list (funcall quoter (default-value symbol)))))
252 ;; If this is NOT while dumping Emacs,
253 ;; set up the rest of the customization info.
254 (unless purify-flag
255 ;; Add it to the right group.
256 (custom-add-to-group group symbol 'custom-variable)
257 ;; Set the type.
258 (put symbol 'custom-type type)
259 (put symbol 'custom-version version)))))
260
261 ;; Record cus-start as loaded
262 ;; if we have set up all the info that we can set up.
263 ;; Don't record cus-start as loaded
264 ;; if we have set up only the standard values.
265 (unless purify-flag
266 (provide 'cus-start))
267
268 ;;; cus-start.el ends here.