Mercurial > emacs
annotate lisp/cus-start.el @ 97485:673065de92b7
*** empty log message ***
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 15 Aug 2008 06:55:43 +0000 |
parents | 6fc28ec407d2 |
children | 2ff12d3be8a7 |
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 | 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, |
79721 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
17416 | 5 ;; |
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
7 ;; Keywords: internal | |
8 | |
17520 | 9 ;; This file is part of GNU Emacs. |
10 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94300
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17520 | 12 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94300
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94300
diff
changeset
|
14 ;; (at your option) any later version. |
17520 | 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 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94300
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17520 | 23 |
17416 | 24 ;;; Commentary: |
25 ;; | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
26 ;; 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
|
27 |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
28 ;; 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
|
29 ;; 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
|
30 ;; 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
|
31 ;; 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
|
32 ;; then it does the whole job. |
17416 | 33 |
34 ;;; Code: | |
35 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85267
diff
changeset
|
36 (let ((all '(;; alloc.c |
17416 | 37 (gc-cons-threshold alloc integer) |
60062
016ddb2eb0c6
(all): Comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
60057
diff
changeset
|
38 (garbage-collection-messages alloc boolean) |
17416 | 39 ;; buffer.c |
79584
07542a9cc2b3
(all): Use correct group name for members of mode-line group.
Martin Rudalics <rudalics@gmx.at>
parents:
78992
diff
changeset
|
40 (mode-line-format mode-line sexp) ;Hard to do right. |
17416 | 41 (default-major-mode internal function) |
18496
dd3b72558628
(enable-multibyte-characters): Customize.
Richard M. Stallman <rms@gnu.org>
parents:
18478
diff
changeset
|
42 (enable-multibyte-characters mule boolean) |
17416 | 43 (case-fold-search matching boolean) |
44 (fill-column fill integer) | |
45 (left-margin fill integer) | |
46 (tab-width editing-basics integer) | |
47 (ctl-arrow display boolean) | |
48 (truncate-lines display boolean) | |
96336
b877913c0692
Add customization types for word-wrap and shift-select-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
95792
diff
changeset
|
49 (word-wrap display boolean) |
17416 | 50 (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
|
51 (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
|
52 (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
|
53 fringe |
37b0b02afa4e
(all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64139
diff
changeset
|
54 (choice |
37b0b02afa4e
(all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64139
diff
changeset
|
55 (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
|
56 (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
|
57 (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
|
58 (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
|
59 :value ((t . nil)) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
60 :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
|
61 :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
|
62 for individual indicators. |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
63 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
|
64 \"Do not show\"." |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
65 (choice :tag "Default" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
66 :value (t . nil) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
67 (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
|
68 (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
|
69 (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
|
70 (choice :tag "Top" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
71 :value (top . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
72 (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
|
73 (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
|
74 (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
|
75 (choice :tag "Bottom" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
76 :value (bottom . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
77 (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
|
78 (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
|
79 (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
|
80 (choice :tag "Up arrow" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
81 :value (up . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
82 (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
|
83 (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
|
84 (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
|
85 (choice :tag "Down arrow" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
86 :value (down . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
87 (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
|
88 (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
|
89 (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
|
90 (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
|
91 (scroll-up-aggressively windows |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
92 (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
|
93 "21.1") |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
94 (scroll-down-aggressively windows |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
95 (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
|
96 "21.1") |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
97 (line-spacing display (choice (const :tag "none" nil) integer) |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
98 "22.1") |
17416 | 99 ;; callint.c |
100 (mark-even-if-inactive editing-basics boolean) | |
96336
b877913c0692
Add customization types for word-wrap and shift-select-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
95792
diff
changeset
|
101 (shift-select-mode editing-basics boolean) |
17416 | 102 ;; callproc.c |
103 (shell-file-name execute file) | |
104 (exec-path execute | |
64139
2fcfefeaac70
(exec-path): Fix tag for nil.
Richard M. Stallman <rms@gnu.org>
parents:
64138
diff
changeset
|
105 (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
|
106 (directory :format "%v")))) |
88574 | 107 ;; charset.c |
89789
fabd2ab3819f
Handle charset-map-path, not charset-map-directory.
Kenichi Handa <handa@m17n.org>
parents:
89483
diff
changeset
|
108 (charset-map-path installation |
fabd2ab3819f
Handle charset-map-path, not charset-map-directory.
Kenichi Handa <handa@m17n.org>
parents:
89483
diff
changeset
|
109 (repeat (directory :format "%v"))) |
24057 | 110 ;; coding.c |
111 (inhibit-eol-conversion mule boolean) | |
24202
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
112 (eol-mnemonic-undecided mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
113 (eol-mnemonic-unix mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
114 (eol-mnemonic-dos mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
115 (eol-mnemonic-mac mule string) |
30978 | 116 (file-coding-system-alist |
117 mule | |
118 (alist | |
119 :key-type (regexp :tag "File regexp") | |
78091
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
120 :value-type (choice |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
121 :value (undecided . undecided) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
122 (cons :tag "Encoding/decoding pair" |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
123 :value (undecided . undecided) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
124 (coding-system :tag "Decoding") |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
125 (coding-system :tag "Encoding")) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
126 (coding-system |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
127 :tag "Single coding system" |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
128 :value undecided |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
129 :match (lambda (widget value) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
130 (and value (not (functionp value))))) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
131 (function :value ignore)))) |
17416 | 132 ;; dired.c |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
133 (completion-ignored-extensions dired |
17416 | 134 (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
|
135 ;; dispnew.c |
17416 | 136 (baud-rate display integer) |
137 (inverse-video display boolean) | |
138 (visible-bell display boolean) | |
139 (no-redraw-on-reenter display boolean) | |
140 ;; editfns.c | |
141 (user-full-name mail string) | |
142 ;; eval.c | |
143 (max-specpdl-size limits integer) | |
144 (max-lisp-eval-depth limits integer) | |
81677
a01517ba35e8
(max-mini-window-height): Added.
Richard M. Stallman <rms@gnu.org>
parents:
77068
diff
changeset
|
145 (max-mini-window-height limits |
a01517ba35e8
(max-mini-window-height): Added.
Richard M. Stallman <rms@gnu.org>
parents:
77068
diff
changeset
|
146 (choice (const :tag "quarter screen" nil) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
147 number) "23.1") |
17416 | 148 (stack-trace-on-error debug |
149 (choice (const :tag "off") | |
150 (repeat :menu-tag "When" | |
151 :value (nil) | |
152 (symbol :format "%v")) | |
153 (const :tag "always" t))) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
154 (debug-on-error debug |
17416 | 155 (choice (const :tag "off") |
156 (repeat :menu-tag "When" | |
157 :value (nil) | |
158 (symbol :format "%v")) | |
159 (const :tag "always" t))) | |
160 (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
|
161 (debug-on-quit debug |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
162 (choice (const :tag "off") |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
163 (repeat :menu-tag "When" |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
164 :value (nil) |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
165 (symbol :format "%v")) |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
166 (const :tag "always" t))) |
96489
b76b9628d74f
Changes from Toru Tsuneyoshi for using Trash can when deleting files.
Jason Rumney <jasonr@gnu.org>
parents:
96336
diff
changeset
|
167 ;; fileio.c |
b76b9628d74f
Changes from Toru Tsuneyoshi for using Trash can when deleting files.
Jason Rumney <jasonr@gnu.org>
parents:
96336
diff
changeset
|
168 (delete-by-moving-to-trash auto-save boolean "23.1") |
97300
6fc28ec407d2
Handle auto-save-visited-file-name.
Chong Yidong <cyd@stupidchicken.com>
parents:
97123
diff
changeset
|
169 (auto-save-visited-file-name auto-save boolean) |
26619 | 170 ;; 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
|
171 (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
|
172 (use-file-dialog menu boolean "22.1") |
78992
15fe36cffb96
(all): Add focus-follows-mouse.
Martin Rudalics <rudalics@gmx.at>
parents:
78236
diff
changeset
|
173 (focus-follows-mouse frames boolean "20.3") |
17416 | 174 ;; frame.c |
175 (default-frame-alist frames | |
176 (repeat (cons :format "%v" | |
177 (symbol :tag "Parameter") | |
178 (sexp :tag "Value")))) | |
43376 | 179 (mouse-highlight mouse (choice (const :tag "disabled" nil) |
180 (const :tag "always shown" t) | |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
181 (other :tag "hidden by keypress" 1)) |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
182 "22.1") |
64790
79faff912fc6
(all): Add `overflow-newline-into-fringe'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64762
diff
changeset
|
183 ;; fringe.c |
69440
4c675b9920d8
(all): Delete :version keyword for members of the fringe group, since
Luc Teirlinck <teirllm@auburn.edu>
parents:
68883
diff
changeset
|
184 (overflow-newline-into-fringe fringe boolean) |
17416 | 185 ;; indent.c |
72371
c1c598c2cd83
<indent-tabs-mode>: Move to the `indent' customization group.
Eli Zaretskii <eliz@gnu.org>
parents:
71355
diff
changeset
|
186 (indent-tabs-mode indent boolean) |
17416 | 187 ;; keyboard.c |
188 (meta-prefix-char keyboard character) | |
189 (auto-save-interval auto-save integer) | |
190 (auto-save-timeout auto-save (choice (const :tag "off" nil) | |
191 (integer :format "%v"))) | |
27768 | 192 (echo-keystrokes minibuffer number) |
17416 | 193 (polling-period keyboard integer) |
18478
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
194 (double-click-time mouse (restricted-sexp |
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
195 :match-alternatives (integerp 'nil 't))) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
196 (double-click-fuzz mouse integer "22.1") |
17416 | 197 (inhibit-local-menu-bar-menus menu boolean) |
198 (help-char keyboard character) | |
199 (help-event-list keyboard (repeat (sexp :format "%v"))) | |
200 (menu-prompting menu boolean) | |
201 (suggest-key-bindings keyboard (choice (const :tag "off" nil) | |
202 (integer :tag "time" 2) | |
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
203 (other :tag "on"))) |
41604
b825c024c5de
(recursive-load-depth-limit): Delete item.
Richard M. Stallman <rms@gnu.org>
parents:
40413
diff
changeset
|
204 |
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
205 ;; 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
|
206 ;; 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
|
207 ;; 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
|
208 ;; value intact at the back. |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
209 ;;; (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
|
210 ;;; (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
|
211 ;;; :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
|
212 ;;; (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
|
213 ;;; (directory :format "%v")))) |
17416 | 214 ;; minibuf.c |
215 (enable-recursive-minibuffers minibuffer boolean) | |
43035
225a3a5477a9
(history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents:
41604
diff
changeset
|
216 (history-length minibuffer |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
217 (choice (const :tag "Infinite" t) integer) |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
218 "22.1") |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
219 (history-delete-duplicates minibuffer boolean "22.1") |
97123
2f70fde56dfe
Add customization info for read-buffer-completion-ignore-case.
Chong Yidong <cyd@stupidchicken.com>
parents:
97043
diff
changeset
|
220 (read-buffer-completion-ignore-case minibuffer boolean "23.1") |
2f70fde56dfe
Add customization info for read-buffer-completion-ignore-case.
Chong Yidong <cyd@stupidchicken.com>
parents:
97043
diff
changeset
|
221 |
33684
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
222 (minibuffer-prompt-properties |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
223 minibuffer |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
224 (list |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
225 (checklist :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
226 (const :tag "Read-Only" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
227 :doc "Prevent prompt from being modified" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
228 :format "%t%n%h" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
229 :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
230 (read-only t)) |
65043
0d1f97bd87d9
(minibuffer-prompt-properties): Correct typo.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65019
diff
changeset
|
231 (const :tag "Don't Enter" |
33684
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
232 :doc "Prevent point from ever entering prompt" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
233 :format "%t%n%h" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
234 :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
235 (point-entered minibuffer-avoid-prompt))) |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
236 (repeat :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
237 :tag "Other Properties" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
238 (list :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
239 :format "%v" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
240 (symbol :tag "Property") |
33922 | 241 (sexp :tag "Value")))) |
242 "21.1") | |
17416 | 243 (minibuffer-auto-raise minibuffer boolean) |
33922 | 244 ;; options property set at end |
34064 | 245 (read-buffer-function minibuffer |
246 (choice (const nil) | |
247 (function-item iswitchb-read-buffer) | |
248 function)) | |
23863
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
249 ;; msdos.c |
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
250 (dos-unsupported-char-glyph display integer) |
17416 | 251 ;; process.c |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
252 (delete-exited-processes processes-basics boolean) |
17416 | 253 ;; syntax.c |
254 (parse-sexp-ignore-comments editing-basics boolean) | |
255 (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
|
256 (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
|
257 "21.1") |
67936
07ec77ecb7b5
Add `visible-cursor'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67845
diff
changeset
|
258 ;; term.c |
07ec77ecb7b5
Add `visible-cursor'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67845
diff
changeset
|
259 (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
|
260 ;; undo.c |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
261 (undo-limit undo integer) |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
262 (undo-strong-limit undo integer) |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
263 (undo-outer-limit undo |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
264 (choice integer |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
265 (const :tag "No limit" |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
266 :format "%t\n%d" |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
267 :doc |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
268 "With this choice, \ |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
269 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
|
270 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
|
271 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
|
272 nil)) |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
273 "22.1") |
17416 | 274 ;; window.c |
35966
911b5aa7fe8d
(temp-buffer-show-function, display-buffer-function): Fix :type.
Dave Love <fx@gnu.org>
parents:
34263
diff
changeset
|
275 (temp-buffer-show-function windows (choice (const nil) function)) |
21407
ea693abdeb4e
next-screen-context-lines is an integer, not boolean.
Stephen Eglen <stephen@gnu.org>
parents:
20017
diff
changeset
|
276 (next-screen-context-lines windows integer) |
17416 | 277 (window-min-height windows integer) |
278 (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
|
279 (scroll-preserve-screen-position |
1ab9d1057ad0
2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents:
75347
diff
changeset
|
280 windows (choice |
1ab9d1057ad0
2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents:
75347
diff
changeset
|
281 (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
|
282 (const :tag "Full screen (t)" :value t) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
283 (other :tag "Always" 1)) "22.1") |
17416 | 284 ;; xdisp.c |
285 (scroll-step windows integer) | |
24758
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
286 (scroll-conservatively windows integer) |
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
287 (scroll-margin windows integer) |
72611
231eb88f2558
(hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents:
72506
diff
changeset
|
288 (hscroll-margin windows integer "22.1") |
231eb88f2558
(hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents:
72506
diff
changeset
|
289 (hscroll-step windows number "22.1") |
17416 | 290 (truncate-partial-width-windows display boolean) |
79584
07542a9cc2b3
(all): Use correct group name for members of mode-line group.
Martin Rudalics <rudalics@gmx.at>
parents:
78992
diff
changeset
|
291 (mode-line-inverse-video mode-line boolean) |
07542a9cc2b3
(all): Use correct group name for members of mode-line group.
Martin Rudalics <rudalics@gmx.at>
parents:
78992
diff
changeset
|
292 (mode-line-in-non-selected-windows mode-line 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
|
293 (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
|
294 (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
|
295 (const :tag "No limit" nil))) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
296 (line-number-display-limit-width display integer "22.1") |
17416 | 297 (highlight-nonselected-windows display boolean) |
298 (message-log-max debug (choice (const :tag "Disable" nil) | |
299 (integer :menu-tag "lines" | |
300 :format "%v") | |
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
301 (other :tag "Unlimited" t))) |
24628
fc7a39405297
(all): Handle unibyte-display-via-language-environment.
Karl Heuer <kwzh@gnu.org>
parents:
24202
diff
changeset
|
302 (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
|
303 (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
|
304 (overline-margin display integer "22.1") |
95792
953225ddde83
* xdisp.c (underline_minimum_offset): Rename from xterm.c's
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95791
diff
changeset
|
305 (underline-minimum-offset display integer "23.1") |
72737
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
306 (mouse-autoselect-window |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
307 display (choice |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
308 (const :tag "Off (nil)" :value nil) |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
309 (const :tag "Immediate" :value t) |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
310 (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
|
311 ;; xfaces.c |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
312 (scalable-fonts-allowed display boolean "22.1") |
17416 | 313 ;; xfns.c |
314 (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
|
315 (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
|
316 (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
|
317 (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
|
318 (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
|
319 (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
|
320 ;; xterm.c |
72611
231eb88f2558
(hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents:
72506
diff
changeset
|
321 (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
|
322 (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
|
323 (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
|
324 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
|
325 ;; This function turns a value |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
326 ;; 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
|
327 (quoter (lambda (sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
328 (if (or (memq sexp '(t nil)) |
28569 | 329 (keywordp sexp) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
330 (and (listp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
331 (memq (car sexp) '(lambda))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
332 (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
|
333 (numberp sexp)) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
334 sexp |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
335 (list 'quote sexp))))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
336 (while all |
17416 | 337 (setq this (car all) |
338 all (cdr all) | |
339 symbol (nth 0 this) | |
340 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
|
341 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
|
342 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
|
343 ;; 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
|
344 ;; 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
|
345 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
|
346 (nth 4 this) |
60096
a9e9af4690d5
(all): Use default-boundp.
Richard M. Stallman <rms@gnu.org>
parents:
60062
diff
changeset
|
347 (when (default-boundp symbol) |
60057
c81f31db6e84
(all): Check if symbol is void.
Lute Kamstra <lute@gnu.org>
parents:
60033
diff
changeset
|
348 (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
|
349 ;; 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
|
350 ;; irrelevant to this platform. |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
351 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
|
352 (cond |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
353 ((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
|
354 (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
|
355 ((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
|
356 (eq system-type 'windows-nt)) |
63369
fe5c9ccf867c
(all): Don't complain about missing GTK-related variables,
Eli Zaretskii <eliz@gnu.org>
parents:
60096
diff
changeset
|
357 ((string-match "\\`x-.*gtk" (symbol-name symbol)) |
83366 | 358 (featurep 'gtk)) |
43235
19bef4fcdae8
Don't warn about "x-*" symbols when building a non-GUI version.
Eli Zaretskii <eliz@gnu.org>
parents:
43111
diff
changeset
|
359 ((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
|
360 (fboundp 'x-create-frame)) |
65401
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
361 ((string-match "selection" (symbol-name symbol)) |
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
362 (fboundp 'x-selection-exists-p)) |
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
363 ((string-match "fringe" (symbol-name symbol)) |
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
364 (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
|
365 (t t)))) |
17416 | 366 (if (not (boundp symbol)) |
367 ;; 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
|
368 (and native-p |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
369 (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
|
370 ;; 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
|
371 (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
|
372 (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
|
373 ;; 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
|
374 ;; 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
|
375 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
376 ;; Add it to the right group. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
377 (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
|
378 ;; 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
|
379 (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
|
380 (put symbol 'custom-version version))))) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
381 |
33922 | 382 (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
|
383 (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
|
384 'custom-variable) |
33922 | 385 |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
386 ;; Record cus-start as loaded |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
387 ;; 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
|
388 ;; 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
|
389 ;; 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
|
390 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
391 (provide 'cus-start)) |
17416 | 392 |
84358
d2cda61c7c00
(split-window-preferred-function): Add custom info.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83648
diff
changeset
|
393 ;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60 |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
35966
diff
changeset
|
394 ;;; cus-start.el ends here |