1 ;;; cus-start.el --- define customization properties of builtins.
3 ;; Copyright (C) 1997 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
)
58 (mark-even-if-inactive editing-basics boolean
)
60 (shell-file-name execute file
)
62 (repeat (choice (const :tag
"default" nil
)
63 (file :format
"%v"))))
65 (inhibit-eol-conversion mule boolean
)
66 (eol-mnemonic-undecided mule string
)
67 (eol-mnemonic-unix mule string
)
68 (eol-mnemonic-dos mule string
)
69 (eol-mnemonic-mac mule string
)
71 (completion-ignored-extensions dired
72 (repeat (string :format
"%v")))
74 (baud-rate display integer
)
75 (inverse-video display boolean
)
76 (visible-bell display boolean
)
77 (no-redraw-on-reenter display boolean
)
79 (user-full-name mail string
)
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"
87 (symbol :format
"%v"))
88 (const :tag
"always" t
)))
90 (choice (const :tag
"off")
91 (repeat :menu-tag
"When"
93 (symbol :format
"%v"))
94 (const :tag
"always" t
)))
95 (debug-ignored-errors debug
(repeat (choice symbol regexp
)))
97 (choice (const :tag
"off")
98 (repeat :menu-tag
"When"
100 (symbol :format
"%v"))
101 (const :tag
"always" t
)))
103 (insert-default-directory minibuffer boolean
)
105 (default-frame-alist frames
106 (repeat (cons :format
"%v"
107 (symbol :tag
"Parameter")
108 (sexp :tag
"Value"))))
110 (indent-tabs-mode fill boolean
)
112 (meta-prefix-char keyboard character
)
113 (auto-save-interval auto-save integer
)
114 (auto-save-timeout auto-save
(choice (const :tag
"off" nil
)
115 (integer :format
"%v")))
116 (echo-keystrokes minibuffer integer
)
117 (polling-period keyboard integer
)
118 (double-click-time mouse
(restricted-sexp
119 :match-alternatives
(integerp 'nil
't
)))
120 (inhibit-local-menu-bar-menus menu boolean
)
121 (help-char keyboard character
)
122 (help-event-list keyboard
(repeat (sexp :format
"%v")))
123 (menu-prompting menu boolean
)
124 (suggest-key-bindings keyboard
(choice (const :tag
"off" nil
)
125 (integer :tag
"time" 2)
128 (load-path environment
129 (repeat (choice :tag
"[Current dir?]"
130 :format
"%[Current dir?%] %v"
131 (const :tag
" current dir" nil
)
132 (directory :format
"%v"))))
134 (completion-auto-help minibuffer boolean
)
135 (enable-recursive-minibuffers minibuffer boolean
)
136 (minibuffer-auto-raise minibuffer boolean
)
138 (dos-unsupported-char-glyph display integer
)
140 (delete-exited-processes processes-basics boolean
)
142 (parse-sexp-ignore-comments editing-basics boolean
)
143 (words-include-escapes editing-basics boolean
)
145 (temp-buffer-show-function windows function
)
146 (display-buffer-function windows function
)
147 (pop-up-frames frames boolean
)
148 (pop-up-frame-function frames function
)
149 (special-display-buffer-names
151 (repeat (choice :tag
"Buffer"
153 (string :format
"%v")
154 (cons :tag
"With attributes"
157 (string :format
"%v")
158 (repeat :tag
"Attributes"
160 (symbol :tag
"Parameter")
161 (sexp :tag
"Value")))))))
162 (special-display-regexps
164 (repeat (choice :tag
"Buffer"
166 (regexp :format
"%v")
167 (cons :tag
"With attributes"
170 (regexp :format
"%v")
171 (repeat :tag
"Attributes"
173 (symbol :tag
"Parameter")
174 (sexp :tag
"Value")))))))
175 (special-display-function frames function
)
176 (same-window-buffer-names windows
(repeat (string :format
"%v")))
177 (same-window-regexps windows
(repeat (regexp :format
"%v")))
178 (pop-up-windows windows boolean
)
179 (next-screen-context-lines windows integer
)
180 (split-height-threshold windows integer
)
181 (window-min-height windows integer
)
182 (window-min-width windows integer
)
183 (scroll-preserve-screen-position windows boolean
)
185 (scroll-step windows integer
)
186 (scroll-conservatively windows integer
)
187 (scroll-margin windows integer
)
188 (truncate-partial-width-windows display boolean
)
189 (mode-line-inverse-video modeline boolean
)
190 (line-number-display-limit display integer
)
191 (highlight-nonselected-windows display boolean
)
192 (message-log-max debug
(choice (const :tag
"Disable" nil
)
193 (integer :menu-tag
"lines"
195 (other :tag
"Unlimited" t
)))
196 (unibyte-display-via-language-environment mule boolean
)
198 (x-bitmap-file-path installation
199 (repeat (directory :format
"%v")))))
200 this symbol group type native-p
201 ;; This function turns a value
202 ;; into an expression which produces that value.
203 (quoter (lambda (sexp)
204 (if (or (memq sexp
'(t nil
))
206 (eq (aref (symbol-name sexp
) 0) ?
:))
208 (memq (car sexp
) '(lambda)))
211 (and (fboundp 'characterp
)
214 (list 'quote sexp
)))))
221 ;; Don't complain about missing variables which are
222 ;; irrelevant to this platform.
223 native-p
(save-match-data
225 ((string-match "\\`dos-" (symbol-name symbol
))
226 (eq system-type
'ms-dos
))
227 ((string-match "\\`w32-" (symbol-name symbol
))
228 (eq system-type
'windows-nt
))
230 (if (not (boundp symbol
))
231 ;; If variables are removed from C code, give an error here!
233 (message "Note, built-in variable `%S' not bound" symbol
))
234 ;; Save the standard value, unless we already did.
235 (or (get symbol
'standard-value
)
236 (put symbol
'standard-value
237 (list (funcall quoter
(default-value symbol
)))))
238 ;; If this is NOT while dumping Emacs,
239 ;; set up the rest of the customization info.
241 ;; Add it to the right group.
242 (custom-add-to-group group symbol
'custom-variable
)
244 (put symbol
'custom-type type
)))))
246 ;; Record cus-start as loaded
247 ;; if we have set up all the info that we can set up.
248 ;; Don't record cus-start as loaded
249 ;; if we have set up only the standard values.
251 (provide 'cus-start
))
253 ;;; cus-start.el ends here.