Merged from miles@gnu.org--gnu-2005 (patch 681)
[bpt/emacs.git] / lisp / cus-start.el
1 ;;; cus-start.el --- define customization properties of builtins
2 ;;
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
7 ;; Keywords: internal
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27 ;;
28 ;; This file adds customize support for built-in variables.
29
30 ;; While dumping Emacs, this file is loaded, but it only records
31 ;; the standard values; it does not do the rest of the job.
32 ;; Later on, if the user makes a customization buffer,
33 ;; this file is loaded again with (require 'cus-start);
34 ;; then it does the whole job.
35
36 ;;; Code:
37
38 (let ((all '(;; abbrev.c
39 (abbrev-all-caps abbrev-mode boolean)
40 (pre-abbrev-expand-hook abbrev-mode hook)
41 ;; alloc.c
42 (gc-cons-threshold alloc integer)
43 (garbage-collection-messages alloc boolean)
44 ;; buffer.c
45 (mode-line-format modeline sexp) ;Hard to do right.
46 (default-major-mode internal function)
47 (enable-multibyte-characters mule boolean)
48 (case-fold-search matching boolean)
49 (fill-column fill integer)
50 (left-margin fill integer)
51 (tab-width editing-basics integer)
52 (ctl-arrow display boolean)
53 (truncate-lines display boolean)
54 (selective-display-ellipses display boolean)
55 (indicate-empty-lines fringe boolean "21.1")
56 (indicate-buffer-boundaries
57 fringe
58 (choice
59 (const :tag "No indicators" nil)
60 (const :tag "On left, with arrows" left)
61 (const :tag "On right, with arrows" right)
62 (set :tag "Pick your own design"
63 :value ((t . nil))
64 :format "%{%t%}:\n%v\n%d"
65 :doc "You can specify a default and then override it \
66 for individual indicators.
67 Leaving \"Default\" unchecked is equivalent with specifying a default of
68 \"Do not show\"."
69 (choice :tag "Default"
70 :value (t . nil)
71 (const :tag "Do not show" (t . nil))
72 (const :tag "On the left" (t . left))
73 (const :tag "On the right" (t . right)))
74 (choice :tag "Top"
75 :value (top . left)
76 (const :tag "Do not show" (top . nil))
77 (const :tag "On the left" (top . left))
78 (const :tag "On the right" (top . right)))
79 (choice :tag "Bottom"
80 :value (bottom . left)
81 (const :tag "Do not show" (bottom . nil))
82 (const :tag "On the left" (bottom . left))
83 (const :tag "On the right" (bottom . right)))
84 (choice :tag "Up arrow"
85 :value (up . left)
86 (const :tag "Do not show" (up . nil))
87 (const :tag "On the left" (up . left))
88 (const :tag "On the right" (up . right)))
89 (choice :tag "Down arrow"
90 :value (down . left)
91 (const :tag "Do not show" (down . nil))
92 (const :tag "On the left" (down . left))
93 (const :tag "On the right" (down . right))))
94 (other :tag "On left, no arrows" t))
95 "22.1")
96 (scroll-up-aggressively windows
97 (choice (const :tag "off" nil) number)
98 "21.1")
99 (scroll-down-aggressively windows
100 (choice (const :tag "off" nil) number)
101 "21.1")
102 (line-spacing display (choice (const :tag "none" nil) integer))
103 ;; callint.c
104 (mark-even-if-inactive editing-basics boolean)
105 ;; callproc.c
106 (shell-file-name execute file)
107 (exec-path execute
108 (repeat (choice (const :tag "default directory" nil)
109 (directory :format "%v"))))
110 ;; coding.c
111 (inhibit-eol-conversion mule boolean)
112 (eol-mnemonic-undecided mule string)
113 (eol-mnemonic-unix mule string)
114 (eol-mnemonic-dos mule string)
115 (eol-mnemonic-mac mule string)
116 (file-coding-system-alist
117 mule
118 (alist
119 :key-type (regexp :tag "File regexp")
120 :value-type (choice
121 :value (undecided . undecided)
122 (cons :tag "Encoding/decoding pair"
123 :value (undecided . undecided)
124 (coding-system :tag "Decoding")
125 (coding-system :tag "Encoding"))
126 (coding-system :tag "Single coding system"
127 :value undecided)
128 (function :value ignore))))
129 (selection-coding-system mule coding-system)
130 ;; dired.c
131 (completion-ignored-extensions dired
132 (repeat (string :format "%v")))
133 ;; dispnew.c
134 (baud-rate display integer)
135 (inverse-video display boolean)
136 (visible-bell display boolean)
137 (no-redraw-on-reenter display boolean)
138 ;; editfns.c
139 (user-full-name mail string)
140 ;; eval.c
141 (max-specpdl-size limits integer)
142 (max-lisp-eval-depth limits integer)
143 (stack-trace-on-error debug
144 (choice (const :tag "off")
145 (repeat :menu-tag "When"
146 :value (nil)
147 (symbol :format "%v"))
148 (const :tag "always" t)))
149 (debug-on-error debug
150 (choice (const :tag "off")
151 (repeat :menu-tag "When"
152 :value (nil)
153 (symbol :format "%v"))
154 (const :tag "always" t)))
155 (debug-ignored-errors debug (repeat (choice symbol regexp)))
156 (debug-on-quit debug
157 (choice (const :tag "off")
158 (repeat :menu-tag "When"
159 :value (nil)
160 (symbol :format "%v"))
161 (const :tag "always" t)))
162 ;; fileio.c
163 (insert-default-directory minibuffer boolean)
164 (read-file-name-completion-ignore-case minibuffer boolean "22.1")
165 ;; fns.c
166 (use-dialog-box menu boolean "21.1")
167 (use-file-dialog menu boolean "22.1")
168 ;; frame.c
169 (default-frame-alist frames
170 (repeat (cons :format "%v"
171 (symbol :tag "Parameter")
172 (sexp :tag "Value"))))
173 (mouse-highlight mouse (choice (const :tag "disabled" nil)
174 (const :tag "always shown" t)
175 (other :tag "hidden by keypress" 1)))
176 ;; fringe.c
177 (overflow-newline-into-fringe fringe boolean "22.1")
178 ;; indent.c
179 (indent-tabs-mode fill boolean)
180 ;; keyboard.c
181 (meta-prefix-char keyboard character)
182 (auto-save-interval auto-save integer)
183 (auto-save-timeout auto-save (choice (const :tag "off" nil)
184 (integer :format "%v")))
185 (echo-keystrokes minibuffer number)
186 (polling-period keyboard integer)
187 (double-click-time mouse (restricted-sexp
188 :match-alternatives (integerp 'nil 't)))
189 (double-click-fuzz mouse integer)
190 (inhibit-local-menu-bar-menus menu boolean)
191 (help-char keyboard character)
192 (help-event-list keyboard (repeat (sexp :format "%v")))
193 (menu-prompting menu boolean)
194 (suggest-key-bindings keyboard (choice (const :tag "off" nil)
195 (integer :tag "time" 2)
196 (other :tag "on")))
197 ;; macterm.c
198 (mac-control-modifier mac (choice (const :tag "No modifier" nil)
199 (const control) (const meta)
200 (const alt) (const hyper)
201 (const super)) "22.1")
202 (mac-command-modifier mac (choice (const :tag "No modifier" nil)
203 (const control) (const meta)
204 (const alt) (const hyper)
205 (const super)) "22.1")
206 (mac-option-modifier mac (choice (const :tag "No modifier (work as option)" nil)
207 (const control) (const meta)
208 (const alt) (const hyper)
209 (const super)) "22.1")
210 (mac-function-modifier mac
211 (choice (const :tag "No modifier (work as function)" nil)
212 (const control) (const meta)
213 (const alt) (const hyper)
214 (const super)) "22.1")
215 (mac-emulate-three-button-mouse mac
216 (choice (const :tag "No emulation" nil)
217 (const :tag "Option->2, Command->3" t)
218 (const :tag "Command->2, Option->3" reverse))
219 "22.1")
220 (mac-wheel-button-is-mouse-2 mac boolean "22.1")
221 (mac-pass-command-to-system mac boolean "22.1")
222 (mac-pass-control-to-system mac boolean "22.1")
223 (mac-allow-anti-aliasing mac boolean "22.1")
224
225 ;; This is not good news because it will use the wrong
226 ;; version-specific directories when you upgrade. We need
227 ;; customization of the front of the list, maintaining the standard
228 ;; value intact at the back.
229 ;;; (load-path environment
230 ;;; (repeat (choice :tag "[Current dir?]"
231 ;;; :format "%[Current dir?%] %v"
232 ;;; (const :tag " current dir" nil)
233 ;;; (directory :format "%v"))))
234 ;; minibuf.c
235 (completion-auto-help minibuffer boolean)
236 (enable-recursive-minibuffers minibuffer boolean)
237 (history-length minibuffer
238 (choice (const :tag "Infinite" t)
239 integer))
240 (history-delete-duplicates minibuffer boolean)
241 (minibuffer-prompt-properties
242 minibuffer
243 (list
244 (checklist :inline t
245 (const :tag "Read-Only"
246 :doc "Prevent prompt from being modified"
247 :format "%t%n%h"
248 :inline t
249 (read-only t))
250 (const :tag "Don't Enter"
251 :doc "Prevent point from ever entering prompt"
252 :format "%t%n%h"
253 :inline t
254 (point-entered minibuffer-avoid-prompt)))
255 (repeat :inline t
256 :tag "Other Properties"
257 (list :inline t
258 :format "%v"
259 (symbol :tag "Property")
260 (sexp :tag "Value"))))
261 "21.1")
262 (minibuffer-auto-raise minibuffer boolean)
263 ;; options property set at end
264 (read-buffer-function minibuffer
265 (choice (const nil)
266 (function-item iswitchb-read-buffer)
267 function))
268 ;; msdos.c
269 (dos-unsupported-char-glyph display integer)
270 ;; process.c
271 (delete-exited-processes processes-basics boolean)
272 ;; syntax.c
273 (parse-sexp-ignore-comments editing-basics boolean)
274 (words-include-escapes editing-basics boolean)
275 (open-paren-in-column-0-is-defun-start editing-basics boolean
276 "21.1")
277 ;; undo.c
278 (undo-limit undo integer)
279 (undo-strong-limit undo integer)
280 (undo-outer-limit undo
281 (choice integer
282 (const :tag "No limit"
283 :format "%t\n%d"
284 :doc
285 "With this choice, \
286 the undo info for the current command never gets discarded.
287 This should only be chosen under exceptional circumstances,
288 since it could result in memory overflow and make Emacs crash."
289 nil))
290 "22.1")
291 ;; window.c
292 (temp-buffer-show-function windows (choice (const nil) function))
293 (display-buffer-function windows (choice (const nil) function))
294 (pop-up-frames frames boolean)
295 (pop-up-frame-function frames function)
296 (special-display-buffer-names
297 frames
298 (repeat (choice :tag "Buffer"
299 :value ""
300 (string :format "%v")
301 (cons :tag "With attributes"
302 :format "%v"
303 :value ("" . nil)
304 (string :format "%v")
305 (repeat :tag "Attributes"
306 (cons :format "%v"
307 (symbol :tag "Parameter")
308 (sexp :tag "Value")))))))
309 (special-display-regexps
310 frames
311 (repeat (choice :tag "Buffer"
312 :value ""
313 (regexp :format "%v")
314 (cons :tag "With attributes"
315 :format "%v"
316 :value ("" . nil)
317 (regexp :format "%v")
318 (repeat :tag "Attributes"
319 (cons :format "%v"
320 (symbol :tag "Parameter")
321 (sexp :tag "Value")))))))
322 (special-display-function frames function)
323 (same-window-buffer-names windows (repeat (string :format "%v")))
324 (same-window-regexps windows (repeat (regexp :format "%v")))
325 (pop-up-windows windows boolean)
326 (even-window-heights windows boolean)
327 (next-screen-context-lines windows integer)
328 (split-height-threshold windows integer)
329 (window-min-height windows integer)
330 (window-min-width windows integer)
331 (scroll-preserve-screen-position windows boolean)
332 (display-buffer-reuse-frames windows boolean "21.1")
333 ;; xdisp.c
334 (scroll-step windows integer)
335 (scroll-conservatively windows integer)
336 (scroll-margin windows integer)
337 (hscroll-margin windows integer "21.3")
338 (hscroll-step windows number "21.3")
339 (truncate-partial-width-windows display boolean)
340 (mode-line-inverse-video modeline boolean)
341 (mode-line-in-non-selected-windows modeline boolean "21.3")
342 (line-number-display-limit display
343 (choice integer
344 (const :tag "No limit" nil)))
345 (line-number-display-limit-width display integer)
346 (highlight-nonselected-windows display boolean)
347 (message-log-max debug (choice (const :tag "Disable" nil)
348 (integer :menu-tag "lines"
349 :format "%v")
350 (other :tag "Unlimited" t)))
351 (unibyte-display-via-language-environment mule boolean)
352 (blink-cursor-alist cursor alist "22.1")
353 ;; xfaces.c
354 (scalable-fonts-allowed display boolean)
355 ;; xfns.c
356 (x-bitmap-file-path installation
357 (repeat (directory :format "%v")))
358 (x-use-old-gtk-file-dialog menu boolean "22.1")
359 (x-gtk-show-hidden-files menu boolean "22.1")
360 ;; xterm.c
361 (mouse-autoselect-window display boolean "21.3")
362 (x-use-underline-position-properties display boolean "21.3")
363 (x-stretch-cursor display boolean "21.1")))
364 this symbol group type standard version native-p
365 ;; This function turns a value
366 ;; into an expression which produces that value.
367 (quoter (lambda (sexp)
368 (if (or (memq sexp '(t nil))
369 (keywordp sexp)
370 (and (listp sexp)
371 (memq (car sexp) '(lambda)))
372 (stringp sexp)
373 (numberp sexp))
374 sexp
375 (list 'quote sexp)))))
376 (while all
377 (setq this (car all)
378 all (cdr all)
379 symbol (nth 0 this)
380 group (nth 1 this)
381 type (nth 2 this)
382 version (nth 3 this)
383 ;; If we did not specify any standard value expression above,
384 ;; use the current value as the standard value.
385 standard (if (nthcdr 4 this)
386 (nth 4 this)
387 (when (default-boundp symbol)
388 (funcall quoter (default-value symbol))))
389 ;; Don't complain about missing variables which are
390 ;; irrelevant to this platform.
391 native-p (save-match-data
392 (cond
393 ((string-match "\\`dos-" (symbol-name symbol))
394 (eq system-type 'ms-dos))
395 ((string-match "\\`w32-" (symbol-name symbol))
396 (eq system-type 'windows-nt))
397 ((string-match "\\`mac-" (symbol-name symbol))
398 (or (eq system-type 'mac) (eq system-type 'darwin)))
399 ((string-match "\\`x-.*gtk" (symbol-name symbol))
400 (featurep 'gtk))
401 ((string-match "\\`x-" (symbol-name symbol))
402 (fboundp 'x-create-frame))
403 ((string-match "selection" (symbol-name symbol))
404 (fboundp 'x-selection-exists-p))
405 ((string-match "fringe" (symbol-name symbol))
406 (fboundp 'define-fringe-bitmap))
407 (t t))))
408 (if (not (boundp symbol))
409 ;; If variables are removed from C code, give an error here!
410 (and native-p
411 (message "Note, built-in variable `%S' not bound" symbol))
412 ;; Save the standard value, unless we already did.
413 (or (get symbol 'standard-value)
414 (put symbol 'standard-value (list standard)))
415 ;; If this is NOT while dumping Emacs,
416 ;; set up the rest of the customization info.
417 (unless purify-flag
418 ;; Add it to the right group.
419 (custom-add-to-group group symbol 'custom-variable)
420 ;; Set the type.
421 (put symbol 'custom-type type)
422 (put symbol 'custom-version version)))))
423
424 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
425 (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start
426 'custom-variable)
427 (put 'selection-coding-system 'custom-set
428 (lambda (symbol value)
429 (set-selection-coding-system value)
430 (set symbol value)))
431
432 ;; Record cus-start as loaded
433 ;; if we have set up all the info that we can set up.
434 ;; Don't record cus-start as loaded
435 ;; if we have set up only the standard values.
436 (unless purify-flag
437 (provide 'cus-start))
438
439 ;;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60
440 ;;; cus-start.el ends here