1 ;;; cus-start.el --- define customization properties of builtins.
3 ;; Copyright (C) 1997, 1999 Free Software Foundation, Inc.
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
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)
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.
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.
37 (let ((all '(;; abbrev.c
38 (abbrev-all-caps abbrev-mode boolean
)
39 (pre-abbrev-expand-hook abbrev-mode hook
)
41 (gc-cons-threshold alloc integer
)
42 (undo-limit undo integer
)
43 (undo-strong-limit undo integer
)
44 (garbage-collection-messages alloc boolean
)
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
)
58 (scroll-up-aggressively windows boolean
)
59 (scroll-down-aggressively windows boolean
)
61 (mark-even-if-inactive editing-basics boolean
)
63 (shell-file-name execute file
)
65 (repeat (choice (const :tag
"default" nil
)
66 (file :format
"%v"))))
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
)
74 (completion-ignored-extensions dired
75 (repeat (string :format
"%v")))
77 (baud-rate display integer
)
78 (inverse-video display boolean
)
79 (visible-bell display boolean
)
80 (no-redraw-on-reenter display boolean
)
82 (user-full-name mail string
)
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"
90 (symbol :format
"%v"))
91 (const :tag
"always" t
)))
93 (choice (const :tag
"off")
94 (repeat :menu-tag
"When"
96 (symbol :format
"%v"))
97 (const :tag
"always" t
)))
98 (debug-ignored-errors debug
(repeat (choice symbol regexp
)))
100 (choice (const :tag
"off")
101 (repeat :menu-tag
"When"
103 (symbol :format
"%v"))
104 (const :tag
"always" t
)))
106 (insert-default-directory minibuffer boolean
)
108 (use-dialog-box menu boolean
)
110 (default-frame-alist frames
111 (repeat (cons :format
"%v"
112 (symbol :tag
"Parameter")
113 (sexp :tag
"Value"))))
115 (indent-tabs-mode fill boolean
)
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 integer
)
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)
133 (load-path environment
134 (repeat (choice :tag
"[Current dir?]"
135 :format
"%[Current dir?%] %v"
136 (const :tag
" current dir" nil
)
137 (directory :format
"%v"))))
139 (completion-auto-help minibuffer boolean
)
140 (enable-recursive-minibuffers minibuffer boolean
)
141 (minibuffer-auto-raise minibuffer boolean
)
143 (dos-unsupported-char-glyph display integer
)
145 (delete-exited-processes processes-basics boolean
)
147 (parse-sexp-ignore-comments editing-basics boolean
)
148 (words-include-escapes editing-basics boolean
)
150 (temp-buffer-show-function windows function
)
151 (display-buffer-function windows function
)
152 (pop-up-frames frames boolean
)
153 (pop-up-frame-function frames function
)
154 (special-display-buffer-names
156 (repeat (choice :tag
"Buffer"
158 (string :format
"%v")
159 (cons :tag
"With attributes"
162 (string :format
"%v")
163 (repeat :tag
"Attributes"
165 (symbol :tag
"Parameter")
166 (sexp :tag
"Value")))))))
167 (special-display-regexps
169 (repeat (choice :tag
"Buffer"
171 (regexp :format
"%v")
172 (cons :tag
"With attributes"
175 (regexp :format
"%v")
176 (repeat :tag
"Attributes"
178 (symbol :tag
"Parameter")
179 (sexp :tag
"Value")))))))
180 (special-display-function frames function
)
181 (same-window-buffer-names windows
(repeat (string :format
"%v")))
182 (same-window-regexps windows
(repeat (regexp :format
"%v")))
183 (pop-up-windows windows boolean
)
184 (next-screen-context-lines windows integer
)
185 (split-height-threshold windows integer
)
186 (window-min-height windows integer
)
187 (window-min-width windows integer
)
188 (scroll-preserve-screen-position windows boolean
)
190 (scroll-step windows integer
)
191 (scroll-conservatively windows integer
)
192 (scroll-margin windows integer
)
193 (truncate-partial-width-windows display boolean
)
194 (mode-line-inverse-video modeline boolean
)
195 (line-number-display-limit display integer
)
196 (highlight-nonselected-windows display boolean
)
197 (message-log-max debug
(choice (const :tag
"Disable" nil
)
198 (integer :menu-tag
"lines"
200 (other :tag
"Unlimited" t
)))
201 (unibyte-display-via-language-environment mule boolean
)
203 (x-bitmap-file-path installation
204 (repeat (directory :format
"%v")))
206 (x-stretch-cursor display boolean
)))
207 this symbol group type native-p
208 ;; This function turns a value
209 ;; into an expression which produces that value.
210 (quoter (lambda (sexp)
211 (if (or (memq sexp
'(t nil
))
213 (eq (aref (symbol-name sexp
) 0) ?
:))
215 (memq (car sexp
) '(lambda)))
218 (and (fboundp 'characterp
)
221 (list 'quote sexp
)))))
228 ;; Don't complain about missing variables which are
229 ;; irrelevant to this platform.
230 native-p
(save-match-data
232 ((string-match "\\`dos-" (symbol-name symbol
))
233 (eq system-type
'ms-dos
))
234 ((string-match "\\`w32-" (symbol-name symbol
))
235 (eq system-type
'windows-nt
))
237 (if (not (boundp symbol
))
238 ;; If variables are removed from C code, give an error here!
240 (message "Note, built-in variable `%S' not bound" symbol
))
241 ;; Save the standard value, unless we already did.
242 (or (get symbol
'standard-value
)
243 (put symbol
'standard-value
244 (list (funcall quoter
(default-value symbol
)))))
245 ;; If this is NOT while dumping Emacs,
246 ;; set up the rest of the customization info.
248 ;; Add it to the right group.
249 (custom-add-to-group group symbol
'custom-variable
)
251 (put symbol
'custom-type type
)))))
253 ;; Record cus-start as loaded
254 ;; if we have set up all the info that we can set up.
255 ;; Don't record cus-start as loaded
256 ;; if we have set up only the standard values.
258 (provide 'cus-start
))
260 ;;; cus-start.el ends here.