annotate lisp/cus-start.el @ 78089:0ab3d57d551f

(file-coding-system-alist): Fix custom type.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Sun, 08 Jul 2007 23:41:36 +0000
parents 1ab9d1057ad0
children 35e7de7eae29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38409
153f1b1f2efd Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 35966
diff changeset
1 ;;; cus-start.el --- define customization properties of builtins
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
2 ;;
64762
41bb365f41c4 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64731
diff changeset
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004,
75347
e3694f1cb928 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 72970
diff changeset
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
5 ;;
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
7 ;; Keywords: internal
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
8
17520
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
9 ;; This file is part of GNU Emacs.
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
10
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
14 ;; any later version.
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
15
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
19 ;; GNU General Public License for more details.
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
20
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
21 ;; You should have received a copy of the GNU General Public License
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64091
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63369
diff changeset
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63369
diff changeset
24 ;; Boston, MA 02110-1301, USA.
17520
f33d7729b6a1 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17476
diff changeset
25
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
26 ;;; Commentary:
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
27 ;;
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
28 ;; This file adds customize support for built-in variables.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
29
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
30 ;; While dumping Emacs, this file is loaded, but it only records
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
31 ;; the standard values; it does not do the rest of the job.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
32 ;; Later on, if the user makes a customization buffer,
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
33 ;; this file is loaded again with (require 'cus-start);
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
34 ;; then it does the whole job.
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
35
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
36 ;;; Code:
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
37
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
38 (let ((all '(;; abbrev.c
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
39 (abbrev-all-caps abbrev-mode boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
40 (pre-abbrev-expand-hook abbrev-mode hook)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
41 ;; alloc.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
42 (gc-cons-threshold alloc integer)
60062
016ddb2eb0c6 (all): Comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60057
diff changeset
43 (garbage-collection-messages alloc boolean)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
44 ;; buffer.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
45 (mode-line-format modeline sexp) ;Hard to do right.
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
46 (default-major-mode internal function)
18496
dd3b72558628 (enable-multibyte-characters): Customize.
Richard M. Stallman <rms@gnu.org>
parents: 18478
diff changeset
47 (enable-multibyte-characters mule boolean)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
48 (case-fold-search matching boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
49 (fill-column fill integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
50 (left-margin fill integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
51 (tab-width editing-basics integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
52 (ctl-arrow display boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
53 (truncate-lines display boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
54 (selective-display-ellipses display boolean)
69440
4c675b9920d8 (all): Delete :version keyword for members of the fringe group, since
Luc Teirlinck <teirllm@auburn.edu>
parents: 68883
diff changeset
55 (indicate-empty-lines fringe boolean)
64706
37b0b02afa4e (all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64139
diff changeset
56 (indicate-buffer-boundaries
37b0b02afa4e (all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64139
diff changeset
57 fringe
37b0b02afa4e (all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64139
diff changeset
58 (choice
37b0b02afa4e (all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64139
diff changeset
59 (const :tag "No indicators" nil)
37b0b02afa4e (all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64139
diff changeset
60 (const :tag "On left, with arrows" left)
37b0b02afa4e (all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64139
diff changeset
61 (const :tag "On right, with arrows" right)
64711
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
62 (set :tag "Pick your own design"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
63 :value ((t . nil))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
64 :format "%{%t%}:\n%v\n%d"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
65 :doc "You can specify a default and then override it \
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
66 for individual indicators.
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
67 Leaving \"Default\" unchecked is equivalent with specifying a default of
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
68 \"Do not show\"."
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
69 (choice :tag "Default"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
70 :value (t . nil)
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
71 (const :tag "Do not show" (t . nil))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
72 (const :tag "On the left" (t . left))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
73 (const :tag "On the right" (t . right)))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
74 (choice :tag "Top"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
75 :value (top . left)
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
76 (const :tag "Do not show" (top . nil))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
77 (const :tag "On the left" (top . left))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
78 (const :tag "On the right" (top . right)))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
79 (choice :tag "Bottom"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
80 :value (bottom . left)
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
81 (const :tag "Do not show" (bottom . nil))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
82 (const :tag "On the left" (bottom . left))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
83 (const :tag "On the right" (bottom . right)))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
84 (choice :tag "Up arrow"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
85 :value (up . left)
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
86 (const :tag "Do not show" (up . nil))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
87 (const :tag "On the left" (up . left))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
88 (const :tag "On the right" (up . right)))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
89 (choice :tag "Down arrow"
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
90 :value (down . left)
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
91 (const :tag "Do not show" (down . nil))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
92 (const :tag "On the left" (down . left))
5d202bf110c9 (all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents: 64708
diff changeset
93 (const :tag "On the right" (down . right))))
69440
4c675b9920d8 (all): Delete :version keyword for members of the fringe group, since
Luc Teirlinck <teirllm@auburn.edu>
parents: 68883
diff changeset
94 (other :tag "On left, no arrows" t)))
48939
f3fc48331bdc (scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents: 48075
diff changeset
95 (scroll-up-aggressively windows
f3fc48331bdc (scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents: 48075
diff changeset
96 (choice (const :tag "off" nil) number)
f3fc48331bdc (scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents: 48075
diff changeset
97 "21.1")
f3fc48331bdc (scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents: 48075
diff changeset
98 (scroll-down-aggressively windows
f3fc48331bdc (scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents: 48075
diff changeset
99 (choice (const :tag "off" nil) number)
f3fc48331bdc (scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents: 48075
diff changeset
100 "21.1")
65945
b3ed9c9b7a4f (line-spacing): Add custom spec.
Richard M. Stallman <rms@gnu.org>
parents: 65403
diff changeset
101 (line-spacing display (choice (const :tag "none" nil) integer))
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
102 ;; callint.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
103 (mark-even-if-inactive editing-basics boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
104 ;; callproc.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
105 (shell-file-name execute file)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
106 (exec-path execute
64139
2fcfefeaac70 (exec-path): Fix tag for nil.
Richard M. Stallman <rms@gnu.org>
parents: 64138
diff changeset
107 (repeat (choice (const :tag "default directory" nil)
64138
a32a0e928f2d (exec-path): Use `directory' instead of `file'.
Richard M. Stallman <rms@gnu.org>
parents: 64091
diff changeset
108 (directory :format "%v"))))
24057
4c733ca989dc Add inhibit-eol-conversion.
Dave Love <fx@gnu.org>
parents: 23967
diff changeset
109 ;; coding.c
4c733ca989dc Add inhibit-eol-conversion.
Dave Love <fx@gnu.org>
parents: 23967
diff changeset
110 (inhibit-eol-conversion mule boolean)
24202
afc9a7e3752f (all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents: 24057
diff changeset
111 (eol-mnemonic-undecided mule string)
afc9a7e3752f (all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents: 24057
diff changeset
112 (eol-mnemonic-unix mule string)
afc9a7e3752f (all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents: 24057
diff changeset
113 (eol-mnemonic-dos mule string)
afc9a7e3752f (all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents: 24057
diff changeset
114 (eol-mnemonic-mac mule string)
30978
e143c9fd35c9 Add display-buffer-reuse-frames,
Dave Love <fx@gnu.org>
parents: 30167
diff changeset
115 (file-coding-system-alist
e143c9fd35c9 Add display-buffer-reuse-frames,
Dave Love <fx@gnu.org>
parents: 30167
diff changeset
116 mule
e143c9fd35c9 Add display-buffer-reuse-frames,
Dave Love <fx@gnu.org>
parents: 30167
diff changeset
117 (alist
e143c9fd35c9 Add display-buffer-reuse-frames,
Dave Love <fx@gnu.org>
parents: 30167
diff changeset
118 :key-type (regexp :tag "File regexp")
78089
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
119 :value-type
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
120 (choice
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
121 :value (undecided . undecided)
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
122 (cons :tag "Encoding/decoding pair"
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
123 :value (undecided . undecided)
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
124 (coding-system :tag "Decoding")
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
125 (coding-system :tag "Encoding"))
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
126 (coding-system
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
127 :tag "Single coding system"
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
128 :value undecided
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
129 :validate
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
130 (lambda (widget)
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
131 (unless (or (coding-system-p (widget-value widget))
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
132 (functionp (widget-value widget)))
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
133 (widget-put
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
134 widget
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
135 :error (format "Invalid coding system: %S"
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
136 (widget-value widget)))
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
137 widget)))
0ab3d57d551f (file-coding-system-alist): Fix custom type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents: 77068
diff changeset
138 (function :value ignore))))
48075
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
139 (selection-coding-system mule coding-system)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
140 ;; dired.c
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
141 (completion-ignored-extensions dired
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
142 (repeat (string :format "%v")))
25296
59e6ee29c69b Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
Dave Love <fx@gnu.org>
parents: 24840
diff changeset
143 ;; dispnew.c
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
144 (baud-rate display integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
145 (inverse-video display boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
146 (visible-bell display boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
147 (no-redraw-on-reenter display boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
148 ;; editfns.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
149 (user-full-name mail string)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
150 ;; eval.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
151 (max-specpdl-size limits integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
152 (max-lisp-eval-depth limits integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
153 (stack-trace-on-error debug
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
154 (choice (const :tag "off")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
155 (repeat :menu-tag "When"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
156 :value (nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
157 (symbol :format "%v"))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
158 (const :tag "always" t)))
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
159 (debug-on-error debug
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
160 (choice (const :tag "off")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
161 (repeat :menu-tag "When"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
162 :value (nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
163 (symbol :format "%v"))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
164 (const :tag "always" t)))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
165 (debug-ignored-errors debug (repeat (choice symbol regexp)))
18883
f7e3c766f54c (debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents: 18727
diff changeset
166 (debug-on-quit debug
f7e3c766f54c (debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents: 18727
diff changeset
167 (choice (const :tag "off")
f7e3c766f54c (debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents: 18727
diff changeset
168 (repeat :menu-tag "When"
f7e3c766f54c (debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents: 18727
diff changeset
169 :value (nil)
f7e3c766f54c (debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents: 18727
diff changeset
170 (symbol :format "%v"))
f7e3c766f54c (debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents: 18727
diff changeset
171 (const :tag "always" t)))
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
172 ;; fileio.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
173 (insert-default-directory minibuffer boolean)
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59739
diff changeset
174 (read-file-name-completion-ignore-case minibuffer boolean "22.1")
26619
53b7c03dd560 Add use-dialog-box.
Dave Love <fx@gnu.org>
parents: 25296
diff changeset
175 ;; fns.c
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
176 (use-dialog-box menu boolean "21.1")
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59739
diff changeset
177 (use-file-dialog menu boolean "22.1")
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
178 ;; frame.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
179 (default-frame-alist frames
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
180 (repeat (cons :format "%v"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
181 (symbol :tag "Parameter")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
182 (sexp :tag "Value"))))
43376
9c7cb2a085f4 Add mouse-highlight.
Kim F. Storm <storm@cua.dk>
parents: 43347
diff changeset
183 (mouse-highlight mouse (choice (const :tag "disabled" nil)
9c7cb2a085f4 Add mouse-highlight.
Kim F. Storm <storm@cua.dk>
parents: 43347
diff changeset
184 (const :tag "always shown" t)
9c7cb2a085f4 Add mouse-highlight.
Kim F. Storm <storm@cua.dk>
parents: 43347
diff changeset
185 (other :tag "hidden by keypress" 1)))
64790
79faff912fc6 (all): Add `overflow-newline-into-fringe'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64762
diff changeset
186 ;; fringe.c
69440
4c675b9920d8 (all): Delete :version keyword for members of the fringe group, since
Luc Teirlinck <teirllm@auburn.edu>
parents: 68883
diff changeset
187 (overflow-newline-into-fringe fringe boolean)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
188 ;; indent.c
72371
c1c598c2cd83 <indent-tabs-mode>: Move to the `indent' customization group.
Eli Zaretskii <eliz@gnu.org>
parents: 71355
diff changeset
189 (indent-tabs-mode indent boolean)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
190 ;; keyboard.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
191 (meta-prefix-char keyboard character)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
192 (auto-save-interval auto-save integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
193 (auto-save-timeout auto-save (choice (const :tag "off" nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
194 (integer :format "%v")))
27768
580d9429435a Make echo-keystrokes `number'.
Dave Love <fx@gnu.org>
parents: 26619
diff changeset
195 (echo-keystrokes minibuffer number)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
196 (polling-period keyboard integer)
18478
74399f15f71e (double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 18434
diff changeset
197 (double-click-time mouse (restricted-sexp
74399f15f71e (double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 18434
diff changeset
198 :match-alternatives (integerp 'nil 't)))
46616
676039ef9a4e (double-click-fuzz): Added.
Richard M. Stallman <rms@gnu.org>
parents: 44357
diff changeset
199 (double-click-fuzz mouse integer)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
200 (inhibit-local-menu-bar-menus menu boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
201 (help-char keyboard character)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
202 (help-event-list keyboard (repeat (sexp :format "%v")))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
203 (menu-prompting menu boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
204 (suggest-key-bindings keyboard (choice (const :tag "off" nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
205 (integer :tag "time" 2)
22571
4aebb136294f (selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents: 21407
diff changeset
206 (other :tag "on")))
70378
21ad7a1f7028 (all): Add mac-dnd-known-types.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69440
diff changeset
207 ;; macselect.c
21ad7a1f7028 (all): Add mac-dnd-known-types.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69440
diff changeset
208 (mac-dnd-known-types mac (repeat string) "22.1")
67661
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
209 ;; macterm.c
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
210 (mac-control-modifier mac (choice (const :tag "No modifier" nil)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
211 (const control) (const meta)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
212 (const alt) (const hyper)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
213 (const super)) "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
214 (mac-command-modifier mac (choice (const :tag "No modifier" nil)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
215 (const control) (const meta)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
216 (const alt) (const hyper)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
217 (const super)) "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
218 (mac-option-modifier mac (choice (const :tag "No modifier (work as option)" nil)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
219 (const control) (const meta)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
220 (const alt) (const hyper)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
221 (const super)) "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
222 (mac-function-modifier mac
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
223 (choice (const :tag "No modifier (work as function)" nil)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
224 (const control) (const meta)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
225 (const alt) (const hyper)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
226 (const super)) "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
227 (mac-emulate-three-button-mouse mac
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
228 (choice (const :tag "No emulation" nil)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
229 (const :tag "Option->2, Command->3" t)
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
230 (const :tag "Command->2, Option->3" reverse))
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
231 "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
232 (mac-wheel-button-is-mouse-2 mac boolean "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
233 (mac-pass-command-to-system mac boolean "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
234 (mac-pass-control-to-system mac boolean "22.1")
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
235 (mac-allow-anti-aliasing mac boolean "22.1")
71355
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
236 (mac-ts-script-language-on-focus mac
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
237 (choice (const :tag "System default behavior" nil)
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
238 (const :tag "Restore to script/language used in the last focus frame" t)
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
239 (cons :tag "Specify script/language"
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
240 (integer :tag "Script code")
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
241 (integer :tag "Language code")))
763764b2c2a4 (all): Add mac-ts-script-language-on-focus.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70378
diff changeset
242 "22.1")
41604
b825c024c5de (recursive-load-depth-limit): Delete item.
Richard M. Stallman <rms@gnu.org>
parents: 40413
diff changeset
243
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
244 ;; This is not good news because it will use the wrong
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
245 ;; version-specific directories when you upgrade. We need
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
246 ;; customization of the front of the list, maintaining the standard
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
247 ;; value intact at the back.
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
248 ;;; (load-path environment
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
249 ;;; (repeat (choice :tag "[Current dir?]"
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
250 ;;; :format "%[Current dir?%] %v"
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
251 ;;; (const :tag " current dir" nil)
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
252 ;;; (directory :format "%v"))))
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
253 ;; minibuf.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
254 (completion-auto-help minibuffer boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
255 (enable-recursive-minibuffers minibuffer boolean)
43035
225a3a5477a9 (history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents: 41604
diff changeset
256 (history-length minibuffer
225a3a5477a9 (history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents: 41604
diff changeset
257 (choice (const :tag "Infinite" t)
225a3a5477a9 (history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents: 41604
diff changeset
258 integer))
57019
0bedef20ddc4 (history-delete-duplicates): Specify customization.
Juri Linkov <juri@jurta.org>
parents: 56671
diff changeset
259 (history-delete-duplicates minibuffer boolean)
33684
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
260 (minibuffer-prompt-properties
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
261 minibuffer
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
262 (list
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
263 (checklist :inline t
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
264 (const :tag "Read-Only"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
265 :doc "Prevent prompt from being modified"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
266 :format "%t%n%h"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
267 :inline t
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
268 (read-only t))
65043
0d1f97bd87d9 (minibuffer-prompt-properties): Correct typo.
Luc Teirlinck <teirllm@auburn.edu>
parents: 65019
diff changeset
269 (const :tag "Don't Enter"
33684
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
270 :doc "Prevent point from ever entering prompt"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
271 :format "%t%n%h"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
272 :inline t
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
273 (point-entered minibuffer-avoid-prompt)))
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
274 (repeat :inline t
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
275 :tag "Other Properties"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
276 (list :inline t
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
277 :format "%v"
1a9baca954a0 Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents: 30978
diff changeset
278 (symbol :tag "Property")
33922
022179568a0f Add version.
Dave Love <fx@gnu.org>
parents: 33848
diff changeset
279 (sexp :tag "Value"))))
022179568a0f Add version.
Dave Love <fx@gnu.org>
parents: 33848
diff changeset
280 "21.1")
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
281 (minibuffer-auto-raise minibuffer boolean)
33922
022179568a0f Add version.
Dave Love <fx@gnu.org>
parents: 33848
diff changeset
282 ;; options property set at end
34064
99bfa903d223 Fix again.
Dave Love <fx@gnu.org>
parents: 34063
diff changeset
283 (read-buffer-function minibuffer
99bfa903d223 Fix again.
Dave Love <fx@gnu.org>
parents: 34063
diff changeset
284 (choice (const nil)
99bfa903d223 Fix again.
Dave Love <fx@gnu.org>
parents: 34063
diff changeset
285 (function-item iswitchb-read-buffer)
99bfa903d223 Fix again.
Dave Love <fx@gnu.org>
parents: 34063
diff changeset
286 function))
23863
478c3628a2cd (dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents: 22571
diff changeset
287 ;; msdos.c
478c3628a2cd (dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents: 22571
diff changeset
288 (dos-unsupported-char-glyph display integer)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
289 ;; process.c
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
290 (delete-exited-processes processes-basics boolean)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
291 ;; syntax.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
292 (parse-sexp-ignore-comments editing-basics boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
293 (words-include-escapes editing-basics boolean)
52129
f6cc7244ebe6 Add open-paren-in-column-0-is-defun-start,
Dave Love <fx@gnu.org>
parents: 49588
diff changeset
294 (open-paren-in-column-0-is-defun-start editing-basics boolean
f6cc7244ebe6 Add open-paren-in-column-0-is-defun-start,
Dave Love <fx@gnu.org>
parents: 49588
diff changeset
295 "21.1")
67936
07ec77ecb7b5 Add `visible-cursor'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67845
diff changeset
296 ;; term.c
07ec77ecb7b5 Add `visible-cursor'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67845
diff changeset
297 (visible-cursor cursor boolean "22.1")
64731
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
298 ;; undo.c
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
299 (undo-limit undo integer)
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
300 (undo-strong-limit undo integer)
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
301 (undo-outer-limit undo
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
302 (choice integer
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
303 (const :tag "No limit"
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
304 :format "%t\n%d"
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
305 :doc
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
306 "With this choice, \
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
307 the undo info for the current command never gets discarded.
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
308 This should only be chosen under exceptional circumstances,
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
309 since it could result in memory overflow and make Emacs crash."
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
310 nil))
b991ecaae196 (all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64711
diff changeset
311 "22.1")
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
312 ;; window.c
35966
911b5aa7fe8d (temp-buffer-show-function, display-buffer-function): Fix :type.
Dave Love <fx@gnu.org>
parents: 34263
diff changeset
313 (temp-buffer-show-function windows (choice (const nil) function))
911b5aa7fe8d (temp-buffer-show-function, display-buffer-function): Fix :type.
Dave Love <fx@gnu.org>
parents: 34263
diff changeset
314 (display-buffer-function windows (choice (const nil) function))
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
315 (pop-up-frames frames boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
316 (pop-up-frame-function frames function)
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
317 (special-display-buffer-names
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
318 frames
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
319 (repeat (choice :tag "Buffer"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
320 :value ""
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
321 (string :format "%v")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
322 (cons :tag "With attributes"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
323 :format "%v"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
324 :value ("" . nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
325 (string :format "%v")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
326 (repeat :tag "Attributes"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
327 (cons :format "%v"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
328 (symbol :tag "Parameter")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
329 (sexp :tag "Value")))))))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
330 (special-display-regexps
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
331 frames
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
332 (repeat (choice :tag "Buffer"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
333 :value ""
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
334 (regexp :format "%v")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
335 (cons :tag "With attributes"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
336 :format "%v"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
337 :value ("" . nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
338 (regexp :format "%v")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
339 (repeat :tag "Attributes"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
340 (cons :format "%v"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
341 (symbol :tag "Parameter")
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
342 (sexp :tag "Value")))))))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
343 (special-display-function frames function)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
344 (same-window-buffer-names windows (repeat (string :format "%v")))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
345 (same-window-regexps windows (repeat (regexp :format "%v")))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
346 (pop-up-windows windows boolean)
34263
56d868415168 Add entry for even-window-heights.
Gerd Moellmann <gerd@gnu.org>
parents: 34064
diff changeset
347 (even-window-heights windows boolean)
21407
ea693abdeb4e next-screen-context-lines is an integer, not boolean.
Stephen Eglen <stephen@gnu.org>
parents: 20017
diff changeset
348 (next-screen-context-lines windows integer)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
349 (split-height-threshold windows integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
350 (window-min-height windows integer)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
351 (window-min-width windows integer)
77068
1ab9d1057ad0 2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents: 75347
diff changeset
352 (scroll-preserve-screen-position
1ab9d1057ad0 2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents: 75347
diff changeset
353 windows (choice
1ab9d1057ad0 2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents: 75347
diff changeset
354 (const :tag "Off (nil)" :value nil)
1ab9d1057ad0 2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents: 75347
diff changeset
355 (const :tag "Full screen (t)" :value t)
1ab9d1057ad0 2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents: 75347
diff changeset
356 (other :tag "Always" 1)))
30978
e143c9fd35c9 Add display-buffer-reuse-frames,
Dave Love <fx@gnu.org>
parents: 30167
diff changeset
357 (display-buffer-reuse-frames windows boolean "21.1")
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
358 ;; xdisp.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
359 (scroll-step windows integer)
24758
16c7330ad116 (all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents: 24628
diff changeset
360 (scroll-conservatively windows integer)
16c7330ad116 (all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents: 24628
diff changeset
361 (scroll-margin windows integer)
72611
231eb88f2558 (hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents: 72506
diff changeset
362 (hscroll-margin windows integer "22.1")
231eb88f2558 (hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents: 72506
diff changeset
363 (hscroll-step windows number "22.1")
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
364 (truncate-partial-width-windows display boolean)
33848
401f7cd02fba (all): Restore entry for `mode-line-inverse-video', so that people can
Miles Bader <miles@gnu.org>
parents: 33722
diff changeset
365 (mode-line-inverse-video modeline boolean)
72611
231eb88f2558 (hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents: 72506
diff changeset
366 (mode-line-in-non-selected-windows modeline boolean "22.1")
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
367 (line-number-display-limit display
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
368 (choice integer
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
369 (const :tag "No limit" nil)))
52129
f6cc7244ebe6 Add open-paren-in-column-0-is-defun-start,
Dave Love <fx@gnu.org>
parents: 49588
diff changeset
370 (line-number-display-limit-width display integer)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
371 (highlight-nonselected-windows display boolean)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
372 (message-log-max debug (choice (const :tag "Disable" nil)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
373 (integer :menu-tag "lines"
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
374 :format "%v")
22571
4aebb136294f (selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents: 21407
diff changeset
375 (other :tag "Unlimited" t)))
24628
fc7a39405297 (all): Handle unibyte-display-via-language-environment.
Karl Heuer <kwzh@gnu.org>
parents: 24202
diff changeset
376 (unibyte-display-via-language-environment mule boolean)
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59739
diff changeset
377 (blink-cursor-alist cursor alist "22.1")
72506
2434e33b748e (all): Add `overline-margin' and `x-underline-at-descent-line'.
Kim F. Storm <storm@cua.dk>
parents: 72371
diff changeset
378 (overline-margin display integer "22.1")
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72611
diff changeset
379 (mouse-autoselect-window
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72611
diff changeset
380 display (choice
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72611
diff changeset
381 (const :tag "Off (nil)" :value nil)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72611
diff changeset
382 (const :tag "Immediate" :value t)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72611
diff changeset
383 (number :tag "Delay by secs" :value 0.5)) "22.1")
48075
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
384 ;; xfaces.c
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
385 (scalable-fonts-allowed display boolean)
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
386 ;; xfns.c
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
387 (x-bitmap-file-path installation
25296
59e6ee29c69b Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
Dave Love <fx@gnu.org>
parents: 24840
diff changeset
388 (repeat (directory :format "%v")))
72970
7bd8e44a9cda * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
Jan Djärv <jan.h.d@swipnet.se>
parents: 72929
diff changeset
389 (x-gtk-use-old-file-dialog menu boolean "22.1")
67845
ff56a6742bc2 Add x-gtk-show-hidden-files
Jan Djärv <jan.h.d@swipnet.se>
parents: 67661
diff changeset
390 (x-gtk-show-hidden-files menu boolean "22.1")
72970
7bd8e44a9cda * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
Jan Djärv <jan.h.d@swipnet.se>
parents: 72929
diff changeset
391 (x-gtk-file-dialog-help-text menu boolean "22.1")
68883
64799e14a115 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
392 (x-gtk-whole-detached-tool-bar x boolean "22.1")
25296
59e6ee29c69b Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
Dave Love <fx@gnu.org>
parents: 24840
diff changeset
393 ;; xterm.c
72611
231eb88f2558 (hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents: 72506
diff changeset
394 (x-use-underline-position-properties display boolean "22.1")
72506
2434e33b748e (all): Add `overline-margin' and `x-underline-at-descent-line'.
Kim F. Storm <storm@cua.dk>
parents: 72371
diff changeset
395 (x-underline-at-descent-line display boolean "22.1")
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
396 (x-stretch-cursor display boolean "21.1")))
60033
ec4864463fc2 (all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
397 this symbol group type standard version native-p
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
398 ;; This function turns a value
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
399 ;; into an expression which produces that value.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
400 (quoter (lambda (sexp)
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
401 (if (or (memq sexp '(t nil))
28569
e2b3c1885fb1 Use keywordp.
Dave Love <fx@gnu.org>
parents: 27768
diff changeset
402 (keywordp sexp)
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
403 (and (listp sexp)
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
404 (memq (car sexp) '(lambda)))
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
405 (stringp sexp)
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
406 (numberp sexp))
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
407 sexp
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
408 (list 'quote sexp)))))
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48939
diff changeset
409 (while all
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
410 (setq this (car all)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
411 all (cdr all)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
412 symbol (nth 0 this)
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
413 group (nth 1 this)
23967
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
414 type (nth 2 this)
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
415 version (nth 3 this)
60033
ec4864463fc2 (all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
416 ;; If we did not specify any standard value expression above,
ec4864463fc2 (all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
417 ;; use the current value as the standard value.
ec4864463fc2 (all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
418 standard (if (nthcdr 4 this)
ec4864463fc2 (all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
419 (nth 4 this)
60096
a9e9af4690d5 (all): Use default-boundp.
Richard M. Stallman <rms@gnu.org>
parents: 60062
diff changeset
420 (when (default-boundp symbol)
60057
c81f31db6e84 (all): Check if symbol is void.
Lute Kamstra <lute@gnu.org>
parents: 60033
diff changeset
421 (funcall quoter (default-value symbol))))
23967
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
422 ;; Don't complain about missing variables which are
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
423 ;; irrelevant to this platform.
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
424 native-p (save-match-data
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
425 (cond
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
426 ((string-match "\\`dos-" (symbol-name symbol))
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
427 (eq system-type 'ms-dos))
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
428 ((string-match "\\`w32-" (symbol-name symbol))
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
429 (eq system-type 'windows-nt))
67661
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
430 ((string-match "\\`mac-" (symbol-name symbol))
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
431 (eq window-system 'mac))
63369
fe5c9ccf867c (all): Don't complain about missing GTK-related variables,
Eli Zaretskii <eliz@gnu.org>
parents: 60096
diff changeset
432 ((string-match "\\`x-.*gtk" (symbol-name symbol))
65401
27b65d33884f (all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents: 65043
diff changeset
433 (or (boundp 'gtk)
65403
4b9f048f9a7e Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 65401
diff changeset
434 (and window-system
4b9f048f9a7e Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 65401
diff changeset
435 (not (eq window-system 'pc))
67661
6f662b71d7cf (all): Add user options in macterm.c. Add test for
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 65945
diff changeset
436 (not (eq window-system 'mac))
65401
27b65d33884f (all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents: 65043
diff changeset
437 (not (eq system-type 'windows-nt)))))
43235
19bef4fcdae8 Don't warn about "x-*" symbols when building a non-GUI version.
Eli Zaretskii <eliz@gnu.org>
parents: 43111
diff changeset
438 ((string-match "\\`x-" (symbol-name symbol))
19bef4fcdae8 Don't warn about "x-*" symbols when building a non-GUI version.
Eli Zaretskii <eliz@gnu.org>
parents: 43111
diff changeset
439 (fboundp 'x-create-frame))
65401
27b65d33884f (all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents: 65043
diff changeset
440 ((string-match "selection" (symbol-name symbol))
27b65d33884f (all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents: 65043
diff changeset
441 (fboundp 'x-selection-exists-p))
27b65d33884f (all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents: 65043
diff changeset
442 ((string-match "fringe" (symbol-name symbol))
27b65d33884f (all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents: 65043
diff changeset
443 (fboundp 'define-fringe-bitmap))
23967
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
444 (t t))))
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
445 (if (not (boundp symbol))
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
446 ;; If variables are removed from C code, give an error here!
23967
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
447 (and native-p
e4039c35f2f8 Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents: 23863
diff changeset
448 (message "Note, built-in variable `%S' not bound" symbol))
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
449 ;; Save the standard value, unless we already did.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
450 (or (get symbol 'standard-value)
60033
ec4864463fc2 (all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents: 59996
diff changeset
451 (put symbol 'standard-value (list standard)))
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
452 ;; If this is NOT while dumping Emacs,
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
453 ;; set up the rest of the customization info.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
454 (unless purify-flag
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
455 ;; Add it to the right group.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
456 (custom-add-to-group group symbol 'custom-variable)
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
457 ;; Set the type.
30167
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
458 (put symbol 'custom-type type)
83e9db7aeddb Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents: 28569
diff changeset
459 (put symbol 'custom-version version)))))
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
460
33922
022179568a0f Add version.
Dave Love <fx@gnu.org>
parents: 33848
diff changeset
461 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
52129
f6cc7244ebe6 Add open-paren-in-column-0-is-defun-start,
Dave Love <fx@gnu.org>
parents: 49588
diff changeset
462 (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start
f6cc7244ebe6 Add open-paren-in-column-0-is-defun-start,
Dave Love <fx@gnu.org>
parents: 49588
diff changeset
463 'custom-variable)
48075
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
464 (put 'selection-coding-system 'custom-set
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
465 (lambda (symbol value)
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
466 (set-selection-coding-system value)
801530a6c168 (selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents: 47358
diff changeset
467 (set symbol value)))
33922
022179568a0f Add version.
Dave Love <fx@gnu.org>
parents: 33848
diff changeset
468
18052
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
469 ;; Record cus-start as loaded
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
470 ;; if we have set up all the info that we can set up.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
471 ;; Don't record cus-start as loaded
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
472 ;; if we have set up only the standard values.
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
473 (unless purify-flag
64a265eaa6d7 Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents: 17948
diff changeset
474 (provide 'cus-start))
17416
c0c355e7934c Initial revision
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
diff changeset
475
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52129
diff changeset
476 ;;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60
38409
153f1b1f2efd Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 35966
diff changeset
477 ;;; cus-start.el ends here