1 ;;; cus-start.el --- define customization properties of builtins
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002 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 (indicate-empty-lines display boolean
"21.1")
57 (scroll-up-aggressively windows
58 (choice (const :tag
"off" nil
) number
)
60 (scroll-down-aggressively windows
61 (choice (const :tag
"off" nil
) number
)
64 (mark-even-if-inactive editing-basics boolean
)
66 (shell-file-name execute file
)
68 (repeat (choice (const :tag
"default" nil
)
69 (file :format
"%v"))))
71 (inhibit-eol-conversion mule boolean
)
72 (eol-mnemonic-undecided mule string
)
73 (eol-mnemonic-unix mule string
)
74 (eol-mnemonic-dos mule string
)
75 (eol-mnemonic-mac mule string
)
76 (file-coding-system-alist
79 :key-type
(regexp :tag
"File regexp")
81 :value
(undecided . undecided
)
82 (cons :tag
"Encoding/decoding pair"
83 :value
(undecided . undecided
)
84 (coding-system :tag
"Decoding")
85 (coding-system :tag
"Encoding"))
86 (coding-system :tag
"Single coding system"
88 (function :value ignore
))))
89 (selection-coding-system mule coding-system
)
91 (completion-ignored-extensions dired
92 (repeat (string :format
"%v")))
94 (baud-rate display integer
)
95 (inverse-video display boolean
)
96 (visible-bell display boolean
)
97 (no-redraw-on-reenter display boolean
)
99 (user-full-name mail string
)
101 (max-specpdl-size limits integer
)
102 (max-lisp-eval-depth limits integer
)
103 (stack-trace-on-error debug
104 (choice (const :tag
"off")
105 (repeat :menu-tag
"When"
107 (symbol :format
"%v"))
108 (const :tag
"always" t
)))
109 (debug-on-error debug
110 (choice (const :tag
"off")
111 (repeat :menu-tag
"When"
113 (symbol :format
"%v"))
114 (const :tag
"always" t
)))
115 (debug-ignored-errors debug
(repeat (choice symbol regexp
)))
117 (choice (const :tag
"off")
118 (repeat :menu-tag
"When"
120 (symbol :format
"%v"))
121 (const :tag
"always" t
)))
123 (insert-default-directory minibuffer boolean
)
125 (use-dialog-box menu boolean
"21.1")
126 (use-file-dialog menu boolean
"21.4")
128 (default-frame-alist frames
129 (repeat (cons :format
"%v"
130 (symbol :tag
"Parameter")
131 (sexp :tag
"Value"))))
132 (mouse-highlight mouse
(choice (const :tag
"disabled" nil
)
133 (const :tag
"always shown" t
)
134 (other :tag
"hidden by keypress" 1)))
136 (indent-tabs-mode fill boolean
)
138 (meta-prefix-char keyboard character
)
139 (auto-save-interval auto-save integer
)
140 (auto-save-timeout auto-save
(choice (const :tag
"off" nil
)
141 (integer :format
"%v")))
142 (echo-keystrokes minibuffer number
)
143 (polling-period keyboard integer
)
144 (double-click-time mouse
(restricted-sexp
145 :match-alternatives
(integerp 'nil
't
)))
146 (double-click-fuzz mouse integer
)
147 (inhibit-local-menu-bar-menus menu boolean
)
148 (help-char keyboard character
)
149 (help-event-list keyboard
(repeat (sexp :format
"%v")))
150 (menu-prompting menu boolean
)
151 (suggest-key-bindings keyboard
(choice (const :tag
"off" nil
)
152 (integer :tag
"time" 2)
155 ;; This is not good news because it will use the wrong
156 ;; version-specific directories when you upgrade. We need
157 ;; customization of the front of the list, maintaining the standard
158 ;; value intact at the back.
159 ;;; (load-path environment
160 ;;; (repeat (choice :tag "[Current dir?]"
161 ;;; :format "%[Current dir?%] %v"
162 ;;; (const :tag " current dir" nil)
163 ;;; (directory :format "%v"))))
165 (completion-auto-help minibuffer boolean
)
166 (enable-recursive-minibuffers minibuffer boolean
)
167 (history-length minibuffer
168 (choice (const :tag
"Infinite" t
)
170 (minibuffer-prompt-properties
174 (const :tag
"Read-Only"
175 :doc
"Prevent prompt from being modified"
179 (const :tag
"Inviolable"
180 :doc
"Prevent point from ever entering prompt"
183 (point-entered minibuffer-avoid-prompt
)))
185 :tag
"Other Properties"
188 (symbol :tag
"Property")
189 (sexp :tag
"Value"))))
191 (minibuffer-auto-raise minibuffer boolean
)
192 ;; options property set at end
193 (read-buffer-function minibuffer
195 (function-item iswitchb-read-buffer
)
198 (dos-unsupported-char-glyph display integer
)
200 (delete-exited-processes processes-basics boolean
)
202 (parse-sexp-ignore-comments editing-basics boolean
)
203 (words-include-escapes editing-basics boolean
)
204 (open-paren-in-column-0-is-defun-start editing-basics boolean
207 (temp-buffer-show-function windows
(choice (const nil
) function
))
208 (display-buffer-function windows
(choice (const nil
) function
))
209 (pop-up-frames frames boolean
)
210 (pop-up-frame-function frames function
)
211 (special-display-buffer-names
213 (repeat (choice :tag
"Buffer"
215 (string :format
"%v")
216 (cons :tag
"With attributes"
219 (string :format
"%v")
220 (repeat :tag
"Attributes"
222 (symbol :tag
"Parameter")
223 (sexp :tag
"Value")))))))
224 (special-display-regexps
226 (repeat (choice :tag
"Buffer"
228 (regexp :format
"%v")
229 (cons :tag
"With attributes"
232 (regexp :format
"%v")
233 (repeat :tag
"Attributes"
235 (symbol :tag
"Parameter")
236 (sexp :tag
"Value")))))))
237 (special-display-function frames function
)
238 (same-window-buffer-names windows
(repeat (string :format
"%v")))
239 (same-window-regexps windows
(repeat (regexp :format
"%v")))
240 (pop-up-windows windows boolean
)
241 (even-window-heights windows boolean
)
242 (next-screen-context-lines windows integer
)
243 (split-height-threshold windows integer
)
244 (window-min-height windows integer
)
245 (window-min-width windows integer
)
246 (scroll-preserve-screen-position windows boolean
)
247 (display-buffer-reuse-frames windows boolean
"21.1")
249 (scroll-step windows integer
)
250 (scroll-conservatively windows integer
)
251 (scroll-margin windows integer
)
252 (hscroll-margin windows integer
"21.3")
253 (hscroll-step windows number
"21.3")
254 (truncate-partial-width-windows display boolean
)
255 (mode-line-inverse-video modeline boolean
)
256 (mode-line-in-non-selected-windows modeline boolean
"21.3")
257 (line-number-display-limit display
259 (const :tag
"No limit" nil
)))
260 (line-number-display-limit-width display integer
)
261 (highlight-nonselected-windows display boolean
)
262 (message-log-max debug
(choice (const :tag
"Disable" nil
)
263 (integer :menu-tag
"lines"
265 (other :tag
"Unlimited" t
)))
266 (unibyte-display-via-language-environment mule boolean
)
267 (blink-cursor-alist cursor alist
"21.5")
269 (scalable-fonts-allowed display boolean
)
271 (x-bitmap-file-path installation
272 (repeat (directory :format
"%v")))
274 (mouse-autoselect-window display boolean
"21.3")
275 (x-use-underline-position-properties display boolean
"21.3")
276 (x-stretch-cursor display boolean
"21.1")))
277 this symbol group type native-p version
278 ;; This function turns a value
279 ;; into an expression which produces that value.
280 (quoter (lambda (sexp)
281 (if (or (memq sexp
'(t nil
))
284 (memq (car sexp
) '(lambda)))
286 ;; (and (fboundp 'characterp)
287 ;; (characterp sexp))
290 (list 'quote sexp
)))))
298 ;; Don't complain about missing variables which are
299 ;; irrelevant to this platform.
300 native-p
(save-match-data
302 ((string-match "\\`dos-" (symbol-name symbol
))
303 (eq system-type
'ms-dos
))
304 ((string-match "\\`w32-" (symbol-name symbol
))
305 (eq system-type
'windows-nt
))
306 ((string-match "\\`x-" (symbol-name symbol
))
307 (fboundp 'x-create-frame
))
309 (if (not (boundp symbol
))
310 ;; If variables are removed from C code, give an error here!
312 (message "Note, built-in variable `%S' not bound" symbol
))
313 ;; Save the standard value, unless we already did.
314 (or (get symbol
'standard-value
)
315 (put symbol
'standard-value
316 (list (funcall quoter
(default-value symbol
)))))
317 ;; If this is NOT while dumping Emacs,
318 ;; set up the rest of the customization info.
320 ;; Add it to the right group.
321 (custom-add-to-group group symbol
'custom-variable
)
323 (put symbol
'custom-type type
)
324 (put symbol
'custom-version version
)))))
326 (custom-add-to-group 'iswitchb
'read-buffer-function
'custom-variable
)
327 (custom-add-to-group 'font-lock
'open-paren-in-column-0-is-defun-start
329 (put 'selection-coding-system
'custom-set
330 (lambda (symbol value
)
331 (set-selection-coding-system value
)
334 ;; Record cus-start as loaded
335 ;; if we have set up all the info that we can set up.
336 ;; Don't record cus-start as loaded
337 ;; if we have set up only the standard values.
339 (provide 'cus-start
))
341 ;;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60
342 ;;; cus-start.el ends here