Merge changes made in Gnus trunk.
[bpt/emacs.git] / lisp / cus-start.el
CommitLineData
1cd7adc6 1;;; cus-start.el --- define customization properties of builtins
1444b0c0 2;;
73b0cd50 3;; Copyright (C) 1997, 1999-2011 Free Software Foundation, Inc.
1444b0c0
PA
4;;
5;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6;; Keywords: internal
bd78fa1d 7;; Package: emacs
1444b0c0 8
c2383d2d
RS
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
c2383d2d 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
c2383d2d
RS
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
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
c2383d2d 23
1444b0c0
PA
24;;; Commentary:
25;;
4883633e 26;; This file adds customize support for built-in variables.
1444b0c0 27
4883633e
RS
28;; While dumping Emacs, this file is loaded, but it only records
29;; the standard values; it does not do the rest of the job.
30;; Later on, if the user makes a customization buffer,
31;; this file is loaded again with (require 'cus-start);
32;; then it does the whole job.
1444b0c0 33
4883633e 34;;; Code:
1444b0c0 35
0356de22
GM
36;; Elements of this list have the form:
37;; SYMBOL GROUP TYPE VERSION REST...
38;; SYMBOL is the name of the variable.
39;; GROUP is the custom group to which it belongs (may also be a list
40;; of groups)
41;; TYPE is the defcustom :type.
42;; VERSION is the defcustom :version (or nil).
43;; REST is a set of :KEYWORD VALUE pairs. Accepted :KEYWORDs are:
44;; :standard - standard value for SYMBOL (else use current value)
45;; :set - custom-set property
46;; :risky - risky-local-variable property
47;; :safe - safe-local-variable property
48;; :tag - custom-tag property
e047f448 49(let ((all '(;; alloc.c
1444b0c0 50 (gc-cons-threshold alloc integer)
0f014aa1 51 (garbage-collection-messages alloc boolean)
1444b0c0 52 ;; buffer.c
e45db0fb 53 (mode-line-format mode-line sexp) ;Hard to do right.
4e3b4528 54 (major-mode internal function)
1444b0c0
PA
55 (case-fold-search matching boolean)
56 (fill-column fill integer)
57 (left-margin fill integer)
58 (tab-width editing-basics integer)
59 (ctl-arrow display boolean)
60 (truncate-lines display boolean)
84975bbe 61 (word-wrap display boolean)
1444b0c0 62 (selective-display-ellipses display boolean)
516b77a3 63 (indicate-empty-lines fringe boolean)
eb94dac6
LT
64 (indicate-buffer-boundaries
65 fringe
66 (choice
67 (const :tag "No indicators" nil)
68 (const :tag "On left, with arrows" left)
69 (const :tag "On right, with arrows" right)
a4fbb790
LT
70 (set :tag "Pick your own design"
71 :value ((t . nil))
72 :format "%{%t%}:\n%v\n%d"
73 :doc "You can specify a default and then override it \
74for individual indicators.
75Leaving \"Default\" unchecked is equivalent with specifying a default of
76\"Do not show\"."
77 (choice :tag "Default"
78 :value (t . nil)
79 (const :tag "Do not show" (t . nil))
80 (const :tag "On the left" (t . left))
81 (const :tag "On the right" (t . right)))
82 (choice :tag "Top"
83 :value (top . left)
84 (const :tag "Do not show" (top . nil))
85 (const :tag "On the left" (top . left))
86 (const :tag "On the right" (top . right)))
87 (choice :tag "Bottom"
88 :value (bottom . left)
89 (const :tag "Do not show" (bottom . nil))
90 (const :tag "On the left" (bottom . left))
91 (const :tag "On the right" (bottom . right)))
92 (choice :tag "Up arrow"
93 :value (up . left)
94 (const :tag "Do not show" (up . nil))
95 (const :tag "On the left" (up . left))
96 (const :tag "On the right" (up . right)))
97 (choice :tag "Down arrow"
98 :value (down . left)
99 (const :tag "Do not show" (down . nil))
100 (const :tag "On the left" (down . left))
101 (const :tag "On the right" (down . right))))
516b77a3 102 (other :tag "On left, no arrows" t)))
c6d57325
RS
103 (scroll-up-aggressively windows
104 (choice (const :tag "off" nil) number)
105 "21.1")
106 (scroll-down-aggressively windows
107 (choice (const :tag "off" nil) number)
108 "21.1")
6671cab3
MR
109 (line-spacing display (choice (const :tag "none" nil) integer)
110 "22.1")
ec514007 111 (cursor-in-non-selected-windows
c8c59954
GM
112 cursor boolean nil
113 :tag "Cursor In Non-selected Windows"
e9c8529f
GM
114 :set (lambda (symbol value)
115 (set-default symbol value)
116 (force-mode-line-update t)))
9d794026 117 (transient-mark-mode editing-basics boolean nil
c8c59954 118 :standard (not noninteractive)
88f43c67
GM
119 :initialize custom-initialize-delay
120 :set custom-set-minor-mode)
b177498a
EZ
121 (bidi-paragraph-direction
122 paragraphs
123 (choice
124 (const :tag "Left to Right" left-to-right)
125 (const :tag "Right to Left" right-to-left)
904215d2
EZ
126 (const :tag "Dynamic, according to paragraph text" nil))
127 "24.1")
1444b0c0
PA
128 ;; callint.c
129 (mark-even-if-inactive editing-basics boolean)
130 ;; callproc.c
131 (shell-file-name execute file)
132 (exec-path execute
f747a488 133 (repeat (choice (const :tag "default directory" nil)
72e869ba 134 (directory :format "%v"))))
5e3097cd 135 ;; charset.c
c11f69e1
KH
136 (charset-map-path installation
137 (repeat (directory :format "%v")))
5fc9eb7c
DL
138 ;; coding.c
139 (inhibit-eol-conversion mule boolean)
de0d1fc5
EZ
140 (eol-mnemonic-undecided mule string)
141 (eol-mnemonic-unix mule string)
142 (eol-mnemonic-dos mule string)
143 (eol-mnemonic-mac mule string)
13eb63ff
DL
144 (file-coding-system-alist
145 mule
146 (alist
147 :key-type (regexp :tag "File regexp")
148 :value-type (choice
149 :value (undecided . undecided)
150 (cons :tag "Encoding/decoding pair"
151 :value (undecided . undecided)
152 (coding-system :tag "Decoding")
153 (coding-system :tag "Encoding"))
70c2811c
KY
154 (coding-system
155 :tag "Single coding system"
156 :value undecided
157 :match (lambda (widget value)
158 (and value (not (functionp value)))))
13eb63ff 159 (function :value ignore))))
1444b0c0 160 ;; dired.c
71296446 161 (completion-ignored-extensions dired
1444b0c0 162 (repeat (string :format "%v")))
0849a37e 163 ;; dispnew.c
1444b0c0
PA
164 (baud-rate display integer)
165 (inverse-video display boolean)
166 (visible-bell display boolean)
167 (no-redraw-on-reenter display boolean)
168 ;; editfns.c
169 (user-full-name mail string)
170 ;; eval.c
171 (max-specpdl-size limits integer)
172 (max-lisp-eval-depth limits integer)
f8add097
RS
173 (max-mini-window-height limits
174 (choice (const :tag "quarter screen" nil)
6671cab3 175 number) "23.1")
71296446 176 (debug-on-error debug
1444b0c0
PA
177 (choice (const :tag "off")
178 (repeat :menu-tag "When"
179 :value (nil)
180 (symbol :format "%v"))
181 (const :tag "always" t)))
182 (debug-ignored-errors debug (repeat (choice symbol regexp)))
507c9247
RS
183 (debug-on-quit debug
184 (choice (const :tag "off")
185 (repeat :menu-tag "When"
186 :value (nil)
187 (symbol :format "%v"))
188 (const :tag "always" t)))
6cf29fe8
JR
189 ;; fileio.c
190 (delete-by-moving-to-trash auto-save boolean "23.1")
6ba7a6f0 191 (auto-save-visited-file-name auto-save boolean)
e088c02a
GM
192 ;; filelock.c
193 (temporary-file-directory
194 ;; Darwin section added 24.1, does not seem worth :version bump.
195 files directory nil
c8c59954 196 :standard
e088c02a
GM
197 (file-name-as-directory
198 ;; FIXME ? Should there be Ftemporary_file_directory to do this
199 ;; more robustly (cf set_local_socket in emacsclient.c).
200 ;; It could be used elsewhere, eg Fcall_process_region,
201 ;; server-socket-dir. See bug#7135.
202 (cond ((memq system-type '(ms-dos windows-nt))
203 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP")
204 "c:/temp"))
205 ((eq system-type 'darwin)
206 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
207 ;; See bug#7135.
208 (let ((tmp (ignore-errors
209 (shell-command-to-string
210 "getconf DARWIN_USER_TEMP_DIR"))))
211 (and (stringp tmp)
212 (setq tmp (replace-regexp-in-string
213 "\n\\'" "" tmp))
214 ;; Handles "getconf: Unrecognized variable..."
215 (file-directory-p tmp)
216 tmp))
217 "/tmp"))
218 (t
219 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
220 "/tmp"))))
221 :initialize custom-initialize-delay)
78976e0a 222 ;; fns.c
37328bcd 223 (use-dialog-box menu boolean "21.1")
bf247b6e 224 (use-file-dialog menu boolean "22.1")
f4c307a5 225 (focus-follows-mouse frames boolean "20.3")
1444b0c0
PA
226 ;; frame.c
227 (default-frame-alist frames
228 (repeat (cons :format "%v"
229 (symbol :tag "Parameter")
230 (sexp :tag "Value"))))
140fb7ff
KS
231 (mouse-highlight mouse (choice (const :tag "disabled" nil)
232 (const :tag "always shown" t)
6671cab3
MR
233 (other :tag "hidden by keypress" 1))
234 "22.1")
e044e4fc 235 (make-pointer-invisible mouse boolean "23.2")
c8c59954 236 (menu-bar-mode frames boolean nil
88f43c67
GM
237 ;; FIXME?
238; :initialize custom-initialize-default
239 :set custom-set-minor-mode)
c8c59954 240 (tool-bar-mode (frames mouse) boolean nil
88f43c67
GM
241; :initialize custom-initialize-default
242 :set custom-set-minor-mode)
48d707c5 243 ;; fringe.c
516b77a3 244 (overflow-newline-into-fringe fringe boolean)
1444b0c0 245 ;; indent.c
01892a52 246 (indent-tabs-mode indent boolean)
1444b0c0
PA
247 ;; keyboard.c
248 (meta-prefix-char keyboard character)
249 (auto-save-interval auto-save integer)
250 (auto-save-timeout auto-save (choice (const :tag "off" nil)
251 (integer :format "%v")))
ac1b1728 252 (echo-keystrokes minibuffer number)
1444b0c0 253 (polling-period keyboard integer)
4db2b1c7
RS
254 (double-click-time mouse (restricted-sexp
255 :match-alternatives (integerp 'nil 't)))
6671cab3 256 (double-click-fuzz mouse integer "22.1")
1444b0c0
PA
257 (inhibit-local-menu-bar-menus menu boolean)
258 (help-char keyboard character)
259 (help-event-list keyboard (repeat (sexp :format "%v")))
260 (menu-prompting menu boolean)
9852377f 261 (select-active-regions killing
7c23dd44
CY
262 (choice (const :tag "always" t)
263 (const :tag "only shift-selection or mouse-drag" only)
9852377f
CY
264 (const :tag "off" nil))
265 "24.1")
1444b0c0
PA
266 (suggest-key-bindings keyboard (choice (const :tag "off" nil)
267 (integer :tag "time" 2)
79221864 268 (other :tag "on")))
0438ce91
DC
269 (debug-on-event debug
270 (choice (const :tag "None" nil)
271 (const :tag "When sent SIGUSR1" sigusr1)
272 (const :tag "When sent SIGUSR2" sigusr2))
273 "24.1")
5f537e54 274
37328bcd
DL
275;; This is not good news because it will use the wrong
276;; version-specific directories when you upgrade. We need
277;; customization of the front of the list, maintaining the standard
278;; value intact at the back.
71296446 279;;; (load-path environment
37328bcd
DL
280;;; (repeat (choice :tag "[Current dir?]"
281;;; :format "%[Current dir?%] %v"
282;;; (const :tag " current dir" nil)
283;;; (directory :format "%v"))))
1444b0c0 284 ;; minibuf.c
1444b0c0 285 (enable-recursive-minibuffers minibuffer boolean)
408f56b2 286 (history-length minibuffer
6671cab3
MR
287 (choice (const :tag "Infinite" t) integer)
288 "22.1")
289 (history-delete-duplicates minibuffer boolean "22.1")
ed278e5d
CY
290 (read-buffer-completion-ignore-case minibuffer boolean "23.1")
291
8f62f2b8
MB
292 (minibuffer-prompt-properties
293 minibuffer
294 (list
295 (checklist :inline t
296 (const :tag "Read-Only"
297 :doc "Prevent prompt from being modified"
298 :format "%t%n%h"
299 :inline t
300 (read-only t))
c9133fa6 301 (const :tag "Don't Enter"
8f62f2b8
MB
302 :doc "Prevent point from ever entering prompt"
303 :format "%t%n%h"
304 :inline t
305 (point-entered minibuffer-avoid-prompt)))
306 (repeat :inline t
307 :tag "Other Properties"
308 (list :inline t
309 :format "%v"
310 (symbol :tag "Property")
ecf5279a
DL
311 (sexp :tag "Value"))))
312 "21.1")
1444b0c0 313 (minibuffer-auto-raise minibuffer boolean)
ecf5279a 314 ;; options property set at end
a8a1b05d
DL
315 (read-buffer-function minibuffer
316 (choice (const nil)
317 (function-item iswitchb-read-buffer)
318 function))
b78fba02
EZ
319 ;; msdos.c
320 (dos-unsupported-char-glyph display integer)
bc9ebf41 321 ;; nsterm.m
77346ecd 322 (ns-control-modifier
ae2349fe 323 ns
bc9ebf41
DR
324 (choice (const :tag "No modifier" nil)
325 (const control) (const meta)
326 (const alt) (const hyper)
327 (const super)) "23.1")
b7d1e144
JD
328 (ns-right-control-modifier
329 ns
330 (choice (const :tag "No modifier (work as control)" none)
331 (const :tag "Use the value of ns-control-modifier"
332 left)
333 (const control) (const meta)
334 (const alt) (const hyper)
335 (const super)) "24.0")
77346ecd 336 (ns-command-modifier
ae2349fe 337 ns
bc9ebf41
DR
338 (choice (const :tag "No modifier" nil)
339 (const control) (const meta)
340 (const alt) (const hyper)
341 (const super)) "23.1")
b7d1e144
JD
342 (ns-right-command-modifier
343 ns
344 (choice (const :tag "No modifier (work as command)" none)
345 (const :tag "Use the value of ns-command-modifier"
346 left)
347 (const control) (const meta)
348 (const alt) (const hyper)
349 (const super)) "24.0")
77346ecd 350 (ns-alternate-modifier
ae2349fe 351 ns
bc9ebf41
DR
352 (choice (const :tag "No modifier (work as alternate/option)" none)
353 (const control) (const meta)
354 (const alt) (const hyper)
355 (const super)) "23.1")
a2e35ef5
JD
356 (ns-right-alternate-modifier
357 ns
358 (choice (const :tag "No modifier (work as alternate/option)" none)
359 (const :tag "Use the value of ns-alternate-modifier"
360 left)
361 (const control) (const meta)
362 (const alt) (const hyper)
363 (const super)) "23.3")
77346ecd 364 (ns-function-modifier
ae2349fe 365 ns
bc9ebf41
DR
366 (choice (const :tag "No modifier (work as function)" none)
367 (const control) (const meta)
368 (const alt) (const hyper)
369 (const super)) "23.1")
370 (ns-antialias-text ns boolean "23.1")
5ffb62aa 371 (ns-auto-hide-menu-bar ns boolean "24.0")
1444b0c0 372 ;; process.c
4883633e 373 (delete-exited-processes processes-basics boolean)
1444b0c0
PA
374 ;; syntax.c
375 (parse-sexp-ignore-comments editing-basics boolean)
376 (words-include-escapes editing-basics boolean)
6b61353c
KH
377 (open-paren-in-column-0-is-defun-start editing-basics boolean
378 "21.1")
98e071b5
SM
379 ;; term.c
380 (visible-cursor cursor boolean "22.1")
0f08b956
LT
381 ;; undo.c
382 (undo-limit undo integer)
383 (undo-strong-limit undo integer)
384 (undo-outer-limit undo
385 (choice integer
386 (const :tag "No limit"
387 :format "%t\n%d"
388 :doc
389 "With this choice, \
390the undo info for the current command never gets discarded.
391This should only be chosen under exceptional circumstances,
392since it could result in memory overflow and make Emacs crash."
393 nil))
394 "22.1")
1444b0c0 395 ;; window.c
4cb464b7 396 (temp-buffer-show-function windows (choice (const nil) function))
74f54b54 397 (next-screen-context-lines windows integer)
7704b6b1
KS
398 (scroll-preserve-screen-position
399 windows (choice
400 (const :tag "Off (nil)" :value nil)
401 (const :tag "Full screen (t)" :value t)
6671cab3 402 (other :tag "Always" 1)) "22.1")
562dd5e9
MR
403 (recenter-redisplay
404 windows (choice
405 (const :tag "Never (nil)" :value nil)
406 (const :tag "Only on ttys" :value tty)
407 (other :tag "Always" t)) "23.1")
408 (window-splits windows boolean "24.1")
409 (window-nest windows boolean "24.1")
1444b0c0 410 ;; xdisp.c
c8c59954 411 (show-trailing-whitespace whitespace-faces boolean nil
ec514007 412 :safe booleanp)
1444b0c0 413 (scroll-step windows integer)
ccbb360e
RS
414 (scroll-conservatively windows integer)
415 (scroll-margin windows integer)
4e371ce8
EZ
416 (hscroll-margin windows integer "22.1")
417 (hscroll-step windows number "22.1")
3a66cc91 418 (truncate-partial-width-windows display boolean "23.1")
e45db0fb
MR
419 (mode-line-inverse-video mode-line boolean)
420 (mode-line-in-non-selected-windows mode-line boolean "22.1")
37328bcd
DL
421 (line-number-display-limit display
422 (choice integer
423 (const :tag "No limit" nil)))
6671cab3 424 (line-number-display-limit-width display integer "22.1")
1444b0c0
PA
425 (highlight-nonselected-windows display boolean)
426 (message-log-max debug (choice (const :tag "Disable" nil)
427 (integer :menu-tag "lines"
428 :format "%v")
79221864 429 (other :tag "Unlimited" t)))
daba3e25 430 (unibyte-display-via-language-environment mule boolean)
bf247b6e 431 (blink-cursor-alist cursor alist "22.1")
03c25271 432 (overline-margin display integer "22.1")
2a3bd2e1 433 (underline-minimum-offset display integer "23.1")
612c16f1
CY
434 (mouse-autoselect-window
435 display (choice
436 (const :tag "Off (nil)" :value nil)
437 (const :tag "Immediate" :value t)
438 (number :tag "Delay by secs" :value 0.5)) "22.1")
f904c0f9
JD
439 (tool-bar-style
440 frames (choice
441 (const :tag "Images" :value image)
442 (const :tag "Text" :value text)
443 (const :tag "Both" :value both)
444 (const :tag "Both-horiz" :value both-horiz)
8a52f00a 445 (const :tag "Text-image-horiz" :value text-image-horiz)
f904c0f9
JD
446 (const :tag "System default" :value nil)) "23.3")
447 (tool-bar-max-label-size frames integer "23.3")
ec514007
GM
448 (auto-hscroll-mode scrolling boolean "21.1")
449 (display-hourglass cursor boolean)
450 (hourglass-delay cursor number)
f904c0f9 451
e5f51929 452 ;; xfaces.c
6671cab3 453 (scalable-fonts-allowed display boolean "22.1")
1444b0c0
PA
454 ;; xfns.c
455 (x-bitmap-file-path installation
0849a37e 456 (repeat (directory :format "%v")))
c4823934 457 (x-gtk-use-old-file-dialog menu boolean "22.1")
91b5a204 458 (x-gtk-show-hidden-files menu boolean "22.1")
c4823934 459 (x-gtk-file-dialog-help-text menu boolean "22.1")
0dd95b49 460 (x-gtk-whole-detached-tool-bar x boolean "22.1")
aa1859f5 461 (x-gtk-use-system-tooltips tooltip boolean "23.3")
0849a37e 462 ;; xterm.c
4e371ce8 463 (x-use-underline-position-properties display boolean "22.1")
03c25271 464 (x-underline-at-descent-line display boolean "22.1")
dfb3c4c6
JD
465 (x-stretch-cursor display boolean "21.1")
466 ;; xsettings.c
467 (font-use-system-font font-selection boolean "23.2")))
ec514007 468 this symbol group type standard version native-p rest prop propval
4883633e
RS
469 ;; This function turns a value
470 ;; into an expression which produces that value.
471 (quoter (lambda (sexp)
472 (if (or (memq sexp '(t nil))
017266f8 473 (keywordp sexp)
4883633e
RS
474 (and (listp sexp)
475 (memq (car sexp) '(lambda)))
476 (stringp sexp)
37328bcd 477 (numberp sexp))
4883633e
RS
478 sexp
479 (list 'quote sexp)))))
71296446 480 (while all
1444b0c0
PA
481 (setq this (car all)
482 all (cdr all)
483 symbol (nth 0 this)
484 group (nth 1 this)
00377857 485 type (nth 2 this)
37328bcd 486 version (nth 3 this)
c8c59954 487 rest (nthcdr 4 this)
a200d998
RS
488 ;; If we did not specify any standard value expression above,
489 ;; use the current value as the standard value.
c8c59954
GM
490 standard (if (setq prop (memq :standard rest))
491 (cadr prop)
492 (if (default-boundp symbol)
493 (funcall quoter (default-value symbol))))
00377857
EZ
494 ;; Don't complain about missing variables which are
495 ;; irrelevant to this platform.
496 native-p (save-match-data
497 (cond
498 ((string-match "\\`dos-" (symbol-name symbol))
499 (eq system-type 'ms-dos))
500 ((string-match "\\`w32-" (symbol-name symbol))
501 (eq system-type 'windows-nt))
77346ecd
EZ
502 ((string-match "\\`ns-" (symbol-name symbol))
503 (featurep 'ns))
2702394e 504 ((string-match "\\`x-.*gtk" (symbol-name symbol))
79cf2123 505 (featurep 'gtk))
197a09bf
EZ
506 ((string-match "\\`x-" (symbol-name symbol))
507 (fboundp 'x-create-frame))
6eb33acb
EZ
508 ((string-match "selection" (symbol-name symbol))
509 (fboundp 'x-selection-exists-p))
510 ((string-match "fringe" (symbol-name symbol))
511 (fboundp 'define-fringe-bitmap))
8b571bf3
JD
512 ((equal "font-use-system-font" (symbol-name symbol))
513 (featurep 'system-font-setting))
c0162ade
EZ
514 ;; Conditioned on x-create-frame, because that's
515 ;; the condition for loadup.el to preload tool-bar.el.
516 ((string-match "tool-bar-" (symbol-name symbol))
517 (fboundp 'x-create-frame))
00377857 518 (t t))))
1444b0c0
PA
519 (if (not (boundp symbol))
520 ;; If variables are removed from C code, give an error here!
00377857
EZ
521 (and native-p
522 (message "Note, built-in variable `%S' not bound" symbol))
4883633e
RS
523 ;; Save the standard value, unless we already did.
524 (or (get symbol 'standard-value)
a200d998 525 (put symbol 'standard-value (list standard)))
ec514007
GM
526 ;; We need these properties independent of whether cus-start is loaded.
527 (if (setq prop (memq :safe rest))
528 (put symbol 'safe-local-variable (cadr prop)))
529 (if (setq prop (memq :risky rest))
530 (put symbol 'risky-local-variable (cadr prop)))
88f43c67
GM
531 (if (setq prop (memq :set rest))
532 (put symbol 'custom-set (cadr prop)))
9d794026
GM
533 ;; Note this is the _only_ initialize property we handle.
534 (if (eq (cadr (memq :initialize rest)) 'custom-initialize-delay)
535 (push symbol custom-delayed-init-variables))
88f43c67
GM
536 ;; If this is NOT while dumping Emacs, set up the rest of the
537 ;; customization info. This is the stuff that is not needed
538 ;; until someone does M-x customize etc.
4883633e 539 (unless purify-flag
9d794026
GM
540 ;; Add it to the right group(s).
541 (if (listp group)
542 (dolist (g group)
543 (custom-add-to-group g symbol 'custom-variable))
544 (custom-add-to-group group symbol 'custom-variable))
4883633e 545 ;; Set the type.
37328bcd 546 (put symbol 'custom-type type)
c8c59954 547 (if version (put symbol 'custom-version version))
ec514007
GM
548 (while rest
549 (setq prop (car rest)
550 propval (cadr rest)
551 rest (nthcdr 2 rest))
c8c59954 552 (cond ((memq prop '(:standard :risky :safe :set))) ; handled above
ec514007
GM
553 ((eq prop :tag)
554 (put symbol 'custom-tag propval))))))))
4883633e 555
ecf5279a 556(custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
6b61353c
KH
557(custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start
558 'custom-variable)
ecf5279a 559
ec514007
GM
560;; Record cus-start as loaded if we have set up all the info that we can.
561;; Don't record it as loaded if we have only set up the standard values
562;; and safe/risky properties.
4883633e
RS
563(unless purify-flag
564 (provide 'cus-start))
1444b0c0 565
1cd7adc6 566;;; cus-start.el ends here