Support resizing frames and windows pixelwise.
[bpt/emacs.git] / lisp / cus-start.el
1 ;;; cus-start.el --- define customization properties of builtins
2
3 ;; Copyright (C) 1997, 1999-2013 Free Software Foundation, Inc.
4
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Keywords: internal
7 ;; Package: emacs
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 3 of the License, or
14 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This file adds customize support for built-in variables.
27
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.
33
34 ;;; Code:
35
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
49 (let ((all '(;; alloc.c
50 (gc-cons-threshold alloc integer)
51 (gc-cons-percentage alloc float)
52 (garbage-collection-messages alloc boolean)
53 ;; buffer.c
54 (cursor-type
55 display
56 (choice
57 (const :tag "Frame default" t)
58 (const :tag "Filled box" box)
59 (const :tag "Hollow cursor" hollow)
60 (const :tag "Vertical bar" bar)
61 (cons :tag "Vertical bar with specified width"
62 (const bar) integer)
63 (const :tag "Horizontal bar" hbar)
64 (cons :tag "Horizontal bar with specified width"
65 (const hbar) integer)
66 (const :tag "None "nil)))
67 (mode-line-format mode-line sexp) ;Hard to do right.
68 (major-mode internal function)
69 (case-fold-search matching boolean)
70 (fill-column fill integer)
71 (left-margin fill integer)
72 (tab-width editing-basics integer)
73 (ctl-arrow display boolean)
74 (truncate-lines display boolean)
75 (word-wrap display boolean)
76 (selective-display-ellipses display boolean)
77 (indicate-empty-lines fringe boolean)
78 (indicate-buffer-boundaries
79 fringe
80 (choice
81 (const :tag "No indicators" nil)
82 (const :tag "On left, with arrows" left)
83 (const :tag "On right, with arrows" right)
84 (set :tag "Pick your own design"
85 :value ((t . nil))
86 :format "%{%t%}:\n%v\n%d"
87 :doc "You can specify a default and then override it \
88 for individual indicators.
89 Leaving \"Default\" unchecked is equivalent with specifying a default of
90 \"Do not show\"."
91 (choice :tag "Default"
92 :value (t . nil)
93 (const :tag "Do not show" (t . nil))
94 (const :tag "On the left" (t . left))
95 (const :tag "On the right" (t . right)))
96 (choice :tag "Top"
97 :value (top . left)
98 (const :tag "Do not show" (top . nil))
99 (const :tag "On the left" (top . left))
100 (const :tag "On the right" (top . right)))
101 (choice :tag "Bottom"
102 :value (bottom . left)
103 (const :tag "Do not show" (bottom . nil))
104 (const :tag "On the left" (bottom . left))
105 (const :tag "On the right" (bottom . right)))
106 (choice :tag "Up arrow"
107 :value (up . left)
108 (const :tag "Do not show" (up . nil))
109 (const :tag "On the left" (up . left))
110 (const :tag "On the right" (up . right)))
111 (choice :tag "Down arrow"
112 :value (down . left)
113 (const :tag "Do not show" (down . nil))
114 (const :tag "On the left" (down . left))
115 (const :tag "On the right" (down . right))))
116 (other :tag "On left, no arrows" t)))
117 (scroll-up-aggressively windows
118 (choice (const :tag "off" nil) float)
119 "21.1")
120 (scroll-down-aggressively windows
121 (choice (const :tag "off" nil) float)
122 "21.1")
123 (line-spacing display (choice (const :tag "none" nil) number)
124 "22.1")
125 (cursor-in-non-selected-windows
126 cursor boolean nil
127 :tag "Cursor In Non-selected Windows"
128 :set (lambda (symbol value)
129 (set-default symbol value)
130 (force-mode-line-update t)))
131 (transient-mark-mode editing-basics boolean nil
132 :standard (not noninteractive)
133 :initialize custom-initialize-delay
134 :set custom-set-minor-mode)
135 (bidi-paragraph-direction
136 paragraphs
137 (choice
138 (const :tag "Left to Right" left-to-right)
139 (const :tag "Right to Left" right-to-left)
140 (const :tag "Dynamic, according to paragraph text" nil))
141 "24.1")
142 ;; callint.c
143 (mark-even-if-inactive editing-basics boolean)
144 ;; callproc.c
145 (shell-file-name execute file)
146 (exec-path execute
147 (repeat (choice (const :tag "default directory" nil)
148 (directory :format "%v"))))
149 (exec-suffixes execute (repeat string))
150 ;; charset.c
151 (charset-map-path installation
152 (repeat (directory :format "%v")))
153 ;; coding.c
154 (inhibit-eol-conversion mule boolean)
155 (eol-mnemonic-undecided mule string)
156 ;; startup.el fiddles with the values. IMO, would be
157 ;; simpler to just use #ifdefs in coding.c.
158 (eol-mnemonic-unix mule string nil
159 :standard
160 (if (memq system-type '(ms-dos windows-nt))
161 "(Unix)" ":"))
162 (eol-mnemonic-dos mule string nil
163 :standard
164 (if (memq system-type '(ms-dos windows-nt))
165 "\\" "(DOS)"))
166 (eol-mnemonic-mac mule string nil
167 :standard "(Mac)")
168 (file-coding-system-alist
169 mule
170 (alist
171 :key-type (regexp :tag "File regexp")
172 :value-type (choice
173 :value (undecided . undecided)
174 (cons :tag "Encoding/decoding pair"
175 :value (undecided . undecided)
176 (coding-system :tag "Decoding")
177 (coding-system :tag "Encoding"))
178 (coding-system
179 :tag "Single coding system"
180 :value undecided
181 :match (lambda (widget value)
182 (and value (not (functionp value)))))
183 (function :value ignore))))
184 ;; dired.c
185 (completion-ignored-extensions dired
186 (repeat (string :format "%v")))
187 ;; dispnew.c
188 (baud-rate display integer)
189 (inverse-video display boolean)
190 (visible-bell display boolean)
191 (no-redraw-on-reenter display boolean)
192
193 ;; dosfns.c
194 (dos-display-scancodes display boolean)
195 (dos-hyper-key keyboard integer)
196 (dos-super-key keyboard integer)
197 (dos-keypad-mode keyboard integer)
198
199 ;; editfns.c
200 (user-full-name mail string)
201 ;; eval.c
202 (max-specpdl-size limits integer)
203 (max-lisp-eval-depth limits integer)
204 (max-mini-window-height limits
205 (choice (const :tag "quarter screen" nil)
206 number) "23.1")
207 (debug-on-error debug
208 (choice (const :tag "off")
209 (repeat :menu-tag "When"
210 :value (nil)
211 (symbol :format "%v"))
212 (const :tag "always" t)))
213 (debug-ignored-errors debug (repeat (choice symbol regexp)))
214 (debug-on-quit debug boolean)
215 (debug-on-signal debug boolean)
216 ;; fileio.c
217 (delete-by-moving-to-trash auto-save boolean "23.1")
218 (auto-save-visited-file-name auto-save boolean)
219 ;; filelock.c
220 (create-lockfiles files boolean "24.3")
221 (temporary-file-directory
222 ;; Darwin section added 24.1, does not seem worth :version bump.
223 files directory nil
224 :standard
225 (file-name-as-directory
226 ;; FIXME ? Should there be Ftemporary_file_directory to do this
227 ;; more robustly (cf set_local_socket in emacsclient.c).
228 ;; It could be used elsewhere, eg Fcall_process_region,
229 ;; server-socket-dir. See bug#7135.
230 (cond ((memq system-type '(ms-dos windows-nt))
231 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP")
232 "c:/temp"))
233 ((eq system-type 'darwin)
234 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
235 ;; See bug#7135.
236 (let ((tmp (ignore-errors
237 (shell-command-to-string
238 "getconf DARWIN_USER_TEMP_DIR"))))
239 (and (stringp tmp)
240 (setq tmp (replace-regexp-in-string
241 "\n\\'" "" tmp))
242 ;; Handles "getconf: Unrecognized variable..."
243 (file-directory-p tmp)
244 tmp))
245 "/tmp"))
246 (t
247 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
248 "/tmp"))))
249 :initialize custom-initialize-delay)
250 ;; fns.c
251 (use-dialog-box menu boolean "21.1")
252 (use-file-dialog menu boolean "22.1")
253 (focus-follows-mouse frames boolean "20.3")
254 ;; fontset.c
255 ;; FIXME nil is the initial value, fontset.el setqs it.
256 (vertical-centering-font-regexp display
257 (choice (const nil) regexp))
258 ;; frame.c
259 (default-frame-alist frames
260 (repeat (cons :format "%v"
261 (symbol :tag "Parameter")
262 (sexp :tag "Value"))))
263 (mouse-highlight mouse (choice (const :tag "disabled" nil)
264 (const :tag "always shown" t)
265 (other :tag "hidden by keypress" 1))
266 "22.1")
267 (make-pointer-invisible mouse boolean "23.2")
268 (menu-bar-mode frames boolean nil
269 ;; FIXME?
270 ; :initialize custom-initialize-default
271 :set custom-set-minor-mode)
272 (tool-bar-mode (frames mouse) boolean nil
273 ; :initialize custom-initialize-default
274 :set custom-set-minor-mode)
275 (frame-resize-pixelwise windows boolean "24.4")
276 ;; fringe.c
277 (overflow-newline-into-fringe fringe boolean)
278 ;; image.c
279 (imagemagick-render-type image integer "24.1")
280 ;; indent.c
281 (indent-tabs-mode indent boolean)
282 ;; keyboard.c
283 (meta-prefix-char keyboard character)
284 (auto-save-interval auto-save integer)
285 (auto-save-timeout auto-save (choice (const :tag "off" nil)
286 (integer :format "%v")))
287 (echo-keystrokes minibuffer number)
288 (polling-period keyboard integer)
289 (double-click-time mouse (restricted-sexp
290 :match-alternatives (integerp 'nil 't)))
291 (double-click-fuzz mouse integer "22.1")
292 (help-char keyboard character)
293 (help-event-list keyboard (repeat (sexp :format "%v")))
294 (menu-prompting menu boolean)
295 (select-active-regions killing
296 (choice (const :tag "always" t)
297 (const :tag "only shift-selection or mouse-drag" only)
298 (const :tag "off" nil))
299 "24.1")
300 (debug-on-event debug
301 (choice (const :tag "None" nil)
302 (const :tag "When sent SIGUSR1" sigusr1)
303 (const :tag "When sent SIGUSR2" sigusr2))
304 "24.1")
305
306 ;; This is not good news because it will use the wrong
307 ;; version-specific directories when you upgrade. We need
308 ;; customization of the front of the list, maintaining the
309 ;; standard value intact at the back.
310 ;;(load-path environment
311 ;; (repeat (choice :tag "[Current dir?]"
312 ;; :format "%[Current dir?%] %v"
313 ;; (const :tag " current dir" nil)
314 ;; (directory :format "%v"))))
315 ;; minibuf.c
316 (enable-recursive-minibuffers minibuffer boolean)
317 (history-length minibuffer
318 (choice (const :tag "Infinite" t) integer)
319 "22.1")
320 (history-delete-duplicates minibuffer boolean "22.1")
321 (read-buffer-completion-ignore-case minibuffer boolean "23.1")
322
323 (minibuffer-prompt-properties
324 minibuffer
325 (list
326 (checklist :inline t
327 (const :tag "Read-Only"
328 :doc "Prevent prompt from being modified"
329 :format "%t%n%h"
330 :inline t
331 (read-only t))
332 (const :tag "Don't Enter"
333 :doc "Prevent point from ever entering prompt"
334 :format "%t%n%h"
335 :inline t
336 (point-entered minibuffer-avoid-prompt)))
337 (repeat :inline t
338 :tag "Other Properties"
339 (list :inline t
340 :format "%v"
341 (symbol :tag "Property")
342 (sexp :tag "Value"))))
343 "21.1")
344 (minibuffer-auto-raise minibuffer boolean)
345 ;; options property set at end
346 (read-buffer-function minibuffer
347 (choice (const nil)
348 (function-item iswitchb-read-buffer)
349 function))
350 ;; msdos.c
351 (dos-unsupported-char-glyph display integer)
352 ;; nsterm.m
353 (ns-control-modifier
354 ns
355 (choice (const :tag "No modifier" nil)
356 (const control) (const meta)
357 (const alt) (const hyper)
358 (const super)) "23.1")
359 (ns-right-control-modifier
360 ns
361 (choice (const :tag "No modifier (work as control)" none)
362 (const :tag "Use the value of ns-control-modifier"
363 left)
364 (const control) (const meta)
365 (const alt) (const hyper)
366 (const super)) "24.0")
367 (ns-command-modifier
368 ns
369 (choice (const :tag "No modifier" nil)
370 (const control) (const meta)
371 (const alt) (const hyper)
372 (const super)) "23.1")
373 (ns-right-command-modifier
374 ns
375 (choice (const :tag "No modifier (work as command)" none)
376 (const :tag "Use the value of ns-command-modifier"
377 left)
378 (const control) (const meta)
379 (const alt) (const hyper)
380 (const super)) "24.0")
381 (ns-alternate-modifier
382 ns
383 (choice (const :tag "No modifier (work as alternate/option)" none)
384 (const control) (const meta)
385 (const alt) (const hyper)
386 (const super)) "23.1")
387 (ns-right-alternate-modifier
388 ns
389 (choice (const :tag "No modifier (work as alternate/option)" none)
390 (const :tag "Use the value of ns-alternate-modifier"
391 left)
392 (const control) (const meta)
393 (const alt) (const hyper)
394 (const super)) "23.3")
395 (ns-function-modifier
396 ns
397 (choice (const :tag "No modifier (work as function)" none)
398 (const control) (const meta)
399 (const alt) (const hyper)
400 (const super)) "23.1")
401 (ns-antialias-text ns boolean "23.1")
402 (ns-auto-hide-menu-bar ns boolean "24.0")
403 (ns-use-native-fullscreen ns boolean "24.4")
404 ;; process.c
405 (delete-exited-processes processes-basics boolean)
406 ;; syntax.c
407 (parse-sexp-ignore-comments editing-basics boolean)
408 (words-include-escapes editing-basics boolean)
409 (open-paren-in-column-0-is-defun-start editing-basics boolean
410 "21.1")
411 ;; term.c
412 (visible-cursor cursor boolean "22.1")
413 ;; undo.c
414 (undo-limit undo integer)
415 (undo-strong-limit undo integer)
416 (undo-outer-limit undo
417 (choice integer
418 (const :tag "No limit"
419 :format "%t\n%d"
420 :doc
421 "With this choice, \
422 the undo info for the current command never gets discarded.
423 This should only be chosen under exceptional circumstances,
424 since it could result in memory overflow and make Emacs crash."
425 nil))
426 "22.1")
427 ;; window.c
428 (temp-buffer-show-function windows (choice (const nil) function))
429 (next-screen-context-lines windows integer)
430 (scroll-preserve-screen-position
431 windows (choice
432 (const :tag "Off (nil)" :value nil)
433 (const :tag "Full screen (t)" :value t)
434 (other :tag "Always" 1)) "22.1")
435 (recenter-redisplay
436 windows (choice
437 (const :tag "Never (nil)" :value nil)
438 (const :tag "Only on ttys" :value tty)
439 (other :tag "Always" t)) "23.1")
440 (window-combination-resize windows boolean "24.1")
441 (window-combination-limit
442 windows (choice
443 (const :tag "Never (nil)" :value nil)
444 (const :tag "For Temp Buffer Resize mode (temp-buffer-resize)"
445 :value temp-buffer-resize)
446 (const :tag "For temporary buffers (temp-buffer)"
447 :value temp-buffer)
448 (const :tag "For buffer display (display-buffer)"
449 :value display-buffer)
450 (other :tag "Always (t)" :value t))
451 "24.3")
452 (window-resize-pixelwise windows boolean "24.4")
453 ;; xdisp.c
454 ;; The whitespace group is for whitespace.el.
455 (show-trailing-whitespace editing-basics boolean nil
456 :safe booleanp)
457 (scroll-step windows integer)
458 (scroll-conservatively windows integer)
459 (scroll-margin windows integer)
460 (hscroll-margin windows integer "22.1")
461 (hscroll-step windows number "22.1")
462 (truncate-partial-width-windows
463 display
464 (choice (integer :tag "Truncate if narrower than")
465 (const :tag "Respect `truncate-lines'" nil)
466 (other :tag "Truncate if not full-width" t))
467 "23.1")
468 (make-cursor-line-fully-visible windows boolean)
469 (mode-line-in-non-selected-windows mode-line boolean "22.1")
470 (line-number-display-limit display
471 (choice integer
472 (const :tag "No limit" nil)))
473 (line-number-display-limit-width display integer "22.1")
474 (highlight-nonselected-windows display boolean)
475 (message-log-max debug (choice (const :tag "Disable" nil)
476 (integer :menu-tag "lines"
477 :format "%v")
478 (other :tag "Unlimited" t))
479 "24.3")
480 (unibyte-display-via-language-environment mule boolean)
481 (blink-cursor-alist cursor alist "22.1")
482 (overline-margin display integer "22.1")
483 (underline-minimum-offset display integer "23.1")
484 (mouse-autoselect-window
485 display (choice
486 (const :tag "Off (nil)" :value nil)
487 (const :tag "Immediate" :value t)
488 (number :tag "Delay by secs" :value 0.5)) "22.1")
489 (tool-bar-style
490 frames (choice
491 (const :tag "Images" :value image)
492 (const :tag "Text" :value text)
493 (const :tag "Both" :value both)
494 (const :tag "Both-horiz" :value both-horiz)
495 (const :tag "Text-image-horiz" :value text-image-horiz)
496 (const :tag "System default" :value nil)) "24.1")
497 (tool-bar-max-label-size frames integer "24.1")
498 (auto-hscroll-mode scrolling boolean "21.1")
499 (void-text-area-pointer cursor
500 (choice
501 (const :tag "Standard (text pointer)" :value nil)
502 (const :tag "Arrow" :value arrow)
503 (const :tag "Text pointer" :value text)
504 (const :tag "Hand" :value hand)
505 (const :tag "Vertical dragger" :value vdrag)
506 (const :tag "Horizontal dragger" :value hdrag)
507 (const :tag "Same as mode line" :value modeline)
508 (const :tag "Hourglass" :value hourglass)))
509 (display-hourglass cursor boolean)
510 (hourglass-delay cursor number)
511
512 ;; xfaces.c
513 (scalable-fonts-allowed display boolean "22.1")
514 ;; xfns.c
515 (x-bitmap-file-path installation
516 (repeat (directory :format "%v")))
517 (x-gtk-use-old-file-dialog menu boolean "22.1")
518 (x-gtk-show-hidden-files menu boolean "22.1")
519 (x-gtk-file-dialog-help-text menu boolean "22.1")
520 (x-gtk-whole-detached-tool-bar x boolean "22.1")
521 (x-gtk-use-system-tooltips tooltip boolean "23.3")
522 ;; xterm.c
523 (x-use-underline-position-properties display boolean "22.1")
524 (x-underline-at-descent-line display boolean "22.1")
525 (x-stretch-cursor display boolean "21.1")
526 (scroll-bar-adjust-thumb-portion windows boolean "24.4")
527 ;; xselect.c
528 (x-select-enable-clipboard-manager killing boolean "24.1")
529 ;; xsettings.c
530 (font-use-system-font font-selection boolean "23.2")))
531 this symbol group type standard version native-p rest prop propval
532 ;; This function turns a value
533 ;; into an expression which produces that value.
534 (quoter (lambda (sexp)
535 (if (or (memq sexp '(t nil))
536 (keywordp sexp)
537 (and (listp sexp)
538 (memq (car sexp) '(lambda)))
539 (stringp sexp)
540 (numberp sexp))
541 sexp
542 (list 'quote sexp)))))
543 (while all
544 (setq this (car all)
545 all (cdr all)
546 symbol (nth 0 this)
547 group (nth 1 this)
548 type (nth 2 this)
549 version (nth 3 this)
550 rest (nthcdr 4 this)
551 ;; If we did not specify any standard value expression above,
552 ;; use the current value as the standard value.
553 standard (if (setq prop (memq :standard rest))
554 (cadr prop)
555 (if (default-boundp symbol)
556 (funcall quoter (default-value symbol))))
557 ;; Don't complain about missing variables which are
558 ;; irrelevant to this platform.
559 native-p (save-match-data
560 (cond
561 ((string-match "\\`dos-" (symbol-name symbol))
562 (eq system-type 'ms-dos))
563 ((string-match "\\`w32-" (symbol-name symbol))
564 (eq system-type 'windows-nt))
565 ((string-match "\\`ns-" (symbol-name symbol))
566 (featurep 'ns))
567 ((string-match "\\`x-.*gtk" (symbol-name symbol))
568 (featurep 'gtk))
569 ((string-match "clipboard-manager" (symbol-name symbol))
570 (boundp 'x-select-enable-clipboard-manager))
571 ((string-match "\\`x-" (symbol-name symbol))
572 (fboundp 'x-create-frame))
573 ((string-match "selection" (symbol-name symbol))
574 (fboundp 'x-selection-exists-p))
575 ((string-match "fringe" (symbol-name symbol))
576 (fboundp 'define-fringe-bitmap))
577 ((string-match "\\`imagemagick" (symbol-name symbol))
578 (fboundp 'imagemagick-types))
579 ((equal "font-use-system-font" (symbol-name symbol))
580 (featurep 'system-font-setting))
581 ;; Conditioned on x-create-frame, because that's
582 ;; the condition for loadup.el to preload tool-bar.el.
583 ((string-match "tool-bar-" (symbol-name symbol))
584 (fboundp 'x-create-frame))
585 ((equal "vertical-centering-font-regexp"
586 (symbol-name symbol))
587 ;; Any function from fontset.c will do.
588 (fboundp 'new-fontset))
589 ((equal "scroll-bar-adjust-thumb-portion"
590 (symbol-name symbol))
591 (featurep 'x))
592 (t t))))
593 (if (not (boundp symbol))
594 ;; If variables are removed from C code, give an error here!
595 (and native-p
596 (message "Note, built-in variable `%S' not bound" symbol))
597 ;; Save the standard value, unless we already did.
598 (or (get symbol 'standard-value)
599 (put symbol 'standard-value (list standard)))
600 ;; We need these properties independent of whether cus-start is loaded.
601 (if (setq prop (memq :safe rest))
602 (put symbol 'safe-local-variable (cadr prop)))
603 (if (setq prop (memq :risky rest))
604 (put symbol 'risky-local-variable (cadr prop)))
605 (if (setq prop (memq :set rest))
606 (put symbol 'custom-set (cadr prop)))
607 ;; Note this is the _only_ initialize property we handle.
608 (if (eq (cadr (memq :initialize rest)) 'custom-initialize-delay)
609 (push symbol custom-delayed-init-variables))
610 ;; If this is NOT while dumping Emacs, set up the rest of the
611 ;; customization info. This is the stuff that is not needed
612 ;; until someone does M-x customize etc.
613 (unless purify-flag
614 ;; Add it to the right group(s).
615 (if (listp group)
616 (dolist (g group)
617 (custom-add-to-group g symbol 'custom-variable))
618 (custom-add-to-group group symbol 'custom-variable))
619 ;; Set the type.
620 (put symbol 'custom-type type)
621 (if version (put symbol 'custom-version version))
622 (while rest
623 (setq prop (car rest)
624 propval (cadr rest)
625 rest (nthcdr 2 rest))
626 (cond ((memq prop '(:standard :risky :safe :set))) ; handled above
627 ((eq prop :tag)
628 (put symbol 'custom-tag propval))))))))
629
630 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
631 (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start
632 'custom-variable)
633
634 ;; Record cus-start as loaded if we have set up all the info that we can.
635 ;; Don't record it as loaded if we have only set up the standard values
636 ;; and safe/risky properties.
637 (unless purify-flag
638 (provide 'cus-start))
639
640 ;;; cus-start.el ends here