Mercurial > emacs
annotate lisp/cus-start.el @ 63309:a500d3fcf4a9
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 11 Jun 2005 11:31:43 +0000 |
parents | a9e9af4690d5 |
children | fe5c9ccf867c 7e3f621f1dd4 |
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 ;; |
60057
c81f31db6e84
(all): Check if symbol is void.
Lute Kamstra <lute@gnu.org>
parents:
60033
diff
changeset
|
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc. |
17416 | 4 ;; |
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
6 ;; Keywords: internal | |
7 | |
17520 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
17416 | 25 ;;; Commentary: |
26 ;; | |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
27 ;; 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
|
28 |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
29 ;; 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
|
30 ;; 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
|
31 ;; 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
|
32 ;; 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
|
33 ;; then it does the whole job. |
17416 | 34 |
35 ;;; Code: | |
36 | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
37 (let ((all '(;; abbrev.c |
17416 | 38 (abbrev-all-caps abbrev-mode boolean) |
39 (pre-abbrev-expand-hook abbrev-mode hook) | |
40 ;; alloc.c | |
41 (gc-cons-threshold alloc integer) | |
60062
016ddb2eb0c6
(all): Comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
60057
diff
changeset
|
42 (garbage-collection-messages alloc boolean) |
016ddb2eb0c6
(all): Comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
60057
diff
changeset
|
43 ;; undo.c |
17416 | 44 (undo-limit undo integer) |
45 (undo-strong-limit undo integer) | |
59739
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
46 (undo-outer-limit undo |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
47 (choice integer |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
48 (const :tag "No limit" |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
49 :format "%t\n%d" |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
50 :doc |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
51 "With this choice, \ |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
52 the undo info for the current command never gets discarded. |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
53 This should only be chosen under exceptional circumstances, |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
54 since it could result in memory overflow and make Emacs crash." |
d44378e6fdf5
(all): Add `undo-outer-limit'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
58464
diff
changeset
|
55 nil)) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59739
diff
changeset
|
56 "22.1") |
17416 | 57 ;; buffer.c |
58 (mode-line-format modeline sexp) ;Hard to do right. | |
59 (default-major-mode internal function) | |
18496
dd3b72558628
(enable-multibyte-characters): Customize.
Richard M. Stallman <rms@gnu.org>
parents:
18478
diff
changeset
|
60 (enable-multibyte-characters mule boolean) |
17416 | 61 (case-fold-search matching boolean) |
62 (fill-column fill integer) | |
63 (left-margin fill integer) | |
64 (tab-width editing-basics integer) | |
65 (ctl-arrow display boolean) | |
66 (truncate-lines display boolean) | |
67 (selective-display-ellipses display boolean) | |
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
68 (indicate-empty-lines display boolean "21.1") |
48939
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
69 (scroll-up-aggressively windows |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
70 (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
|
71 "21.1") |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
72 (scroll-down-aggressively windows |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
73 (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
|
74 "21.1") |
17416 | 75 ;; callint.c |
76 (mark-even-if-inactive editing-basics boolean) | |
77 ;; callproc.c | |
78 (shell-file-name execute file) | |
79 (exec-path execute | |
80 (repeat (choice (const :tag "default" nil) | |
81 (file :format "%v")))) | |
24057 | 82 ;; coding.c |
83 (inhibit-eol-conversion mule boolean) | |
24202
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
84 (eol-mnemonic-undecided mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
85 (eol-mnemonic-unix mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
86 (eol-mnemonic-dos mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
87 (eol-mnemonic-mac mule string) |
30978 | 88 (file-coding-system-alist |
89 mule | |
90 (alist | |
91 :key-type (regexp :tag "File regexp") | |
92 :value-type (choice | |
93 :value (undecided . undecided) | |
94 (cons :tag "Encoding/decoding pair" | |
95 :value (undecided . undecided) | |
96 (coding-system :tag "Decoding") | |
97 (coding-system :tag "Encoding")) | |
98 (coding-system :tag "Single coding system" | |
99 :value undecided) | |
100 (function :value ignore)))) | |
48075
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
101 (selection-coding-system mule coding-system) |
17416 | 102 ;; dired.c |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
103 (completion-ignored-extensions dired |
17416 | 104 (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
|
105 ;; dispnew.c |
17416 | 106 (baud-rate display integer) |
107 (inverse-video display boolean) | |
108 (visible-bell display boolean) | |
109 (no-redraw-on-reenter display boolean) | |
110 ;; editfns.c | |
111 (user-full-name mail string) | |
112 ;; eval.c | |
113 (max-specpdl-size limits integer) | |
114 (max-lisp-eval-depth limits integer) | |
115 (stack-trace-on-error debug | |
116 (choice (const :tag "off") | |
117 (repeat :menu-tag "When" | |
118 :value (nil) | |
119 (symbol :format "%v")) | |
120 (const :tag "always" t))) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
121 (debug-on-error debug |
17416 | 122 (choice (const :tag "off") |
123 (repeat :menu-tag "When" | |
124 :value (nil) | |
125 (symbol :format "%v")) | |
126 (const :tag "always" t))) | |
127 (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
|
128 (debug-on-quit debug |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
129 (choice (const :tag "off") |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
130 (repeat :menu-tag "When" |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
131 :value (nil) |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
132 (symbol :format "%v")) |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
133 (const :tag "always" t))) |
17416 | 134 ;; fileio.c |
135 (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
|
136 (read-file-name-completion-ignore-case minibuffer boolean "22.1") |
26619 | 137 ;; 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
|
138 (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
|
139 (use-file-dialog menu boolean "22.1") |
17416 | 140 ;; frame.c |
141 (default-frame-alist frames | |
142 (repeat (cons :format "%v" | |
143 (symbol :tag "Parameter") | |
144 (sexp :tag "Value")))) | |
43376 | 145 (mouse-highlight mouse (choice (const :tag "disabled" nil) |
146 (const :tag "always shown" t) | |
147 (other :tag "hidden by keypress" 1))) | |
17416 | 148 ;; indent.c |
149 (indent-tabs-mode fill boolean) | |
150 ;; keyboard.c | |
151 (meta-prefix-char keyboard character) | |
152 (auto-save-interval auto-save integer) | |
153 (auto-save-timeout auto-save (choice (const :tag "off" nil) | |
154 (integer :format "%v"))) | |
27768 | 155 (echo-keystrokes minibuffer number) |
17416 | 156 (polling-period keyboard integer) |
18478
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
157 (double-click-time mouse (restricted-sexp |
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
158 :match-alternatives (integerp 'nil 't))) |
46616
676039ef9a4e
(double-click-fuzz): Added.
Richard M. Stallman <rms@gnu.org>
parents:
44357
diff
changeset
|
159 (double-click-fuzz mouse integer) |
17416 | 160 (inhibit-local-menu-bar-menus menu boolean) |
161 (help-char keyboard character) | |
162 (help-event-list keyboard (repeat (sexp :format "%v"))) | |
163 (menu-prompting menu boolean) | |
164 (suggest-key-bindings keyboard (choice (const :tag "off" nil) | |
165 (integer :tag "time" 2) | |
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
166 (other :tag "on"))) |
41604
b825c024c5de
(recursive-load-depth-limit): Delete item.
Richard M. Stallman <rms@gnu.org>
parents:
40413
diff
changeset
|
167 |
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
168 ;; 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
|
169 ;; 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
|
170 ;; 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
|
171 ;; value intact at the back. |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
172 ;;; (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
|
173 ;;; (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
|
174 ;;; :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
|
175 ;;; (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
|
176 ;;; (directory :format "%v")))) |
17416 | 177 ;; minibuf.c |
178 (completion-auto-help minibuffer boolean) | |
179 (enable-recursive-minibuffers minibuffer boolean) | |
43035
225a3a5477a9
(history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents:
41604
diff
changeset
|
180 (history-length minibuffer |
225a3a5477a9
(history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents:
41604
diff
changeset
|
181 (choice (const :tag "Infinite" t) |
225a3a5477a9
(history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents:
41604
diff
changeset
|
182 integer)) |
57019
0bedef20ddc4
(history-delete-duplicates): Specify customization.
Juri Linkov <juri@jurta.org>
parents:
56671
diff
changeset
|
183 (history-delete-duplicates minibuffer boolean) |
33684
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
184 (minibuffer-prompt-properties |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
185 minibuffer |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
186 (list |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
187 (checklist :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
188 (const :tag "Read-Only" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
189 :doc "Prevent prompt from being modified" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
190 :format "%t%n%h" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
191 :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
192 (read-only t)) |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
193 (const :tag "Inviolable" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
194 :doc "Prevent point from ever entering prompt" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
195 :format "%t%n%h" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
196 :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
197 (point-entered minibuffer-avoid-prompt))) |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
198 (repeat :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
199 :tag "Other Properties" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
200 (list :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
201 :format "%v" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
202 (symbol :tag "Property") |
33922 | 203 (sexp :tag "Value")))) |
204 "21.1") | |
17416 | 205 (minibuffer-auto-raise minibuffer boolean) |
33922 | 206 ;; options property set at end |
34064 | 207 (read-buffer-function minibuffer |
208 (choice (const nil) | |
209 (function-item iswitchb-read-buffer) | |
210 function)) | |
23863
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
211 ;; msdos.c |
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
212 (dos-unsupported-char-glyph display integer) |
17416 | 213 ;; process.c |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
214 (delete-exited-processes processes-basics boolean) |
17416 | 215 ;; syntax.c |
216 (parse-sexp-ignore-comments editing-basics boolean) | |
217 (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
|
218 (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
|
219 "21.1") |
17416 | 220 ;; window.c |
35966
911b5aa7fe8d
(temp-buffer-show-function, display-buffer-function): Fix :type.
Dave Love <fx@gnu.org>
parents:
34263
diff
changeset
|
221 (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
|
222 (display-buffer-function windows (choice (const nil) function)) |
17416 | 223 (pop-up-frames frames boolean) |
224 (pop-up-frame-function frames function) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
225 (special-display-buffer-names |
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
226 frames |
17416 | 227 (repeat (choice :tag "Buffer" |
228 :value "" | |
229 (string :format "%v") | |
230 (cons :tag "With attributes" | |
231 :format "%v" | |
232 :value ("" . nil) | |
233 (string :format "%v") | |
234 (repeat :tag "Attributes" | |
235 (cons :format "%v" | |
236 (symbol :tag "Parameter") | |
237 (sexp :tag "Value"))))))) | |
238 (special-display-regexps | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
239 frames |
17416 | 240 (repeat (choice :tag "Buffer" |
241 :value "" | |
242 (regexp :format "%v") | |
243 (cons :tag "With attributes" | |
244 :format "%v" | |
245 :value ("" . nil) | |
246 (regexp :format "%v") | |
247 (repeat :tag "Attributes" | |
248 (cons :format "%v" | |
249 (symbol :tag "Parameter") | |
250 (sexp :tag "Value"))))))) | |
251 (special-display-function frames function) | |
252 (same-window-buffer-names windows (repeat (string :format "%v"))) | |
253 (same-window-regexps windows (repeat (regexp :format "%v"))) | |
254 (pop-up-windows windows boolean) | |
34263
56d868415168
Add entry for even-window-heights.
Gerd Moellmann <gerd@gnu.org>
parents:
34064
diff
changeset
|
255 (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
|
256 (next-screen-context-lines windows integer) |
17416 | 257 (split-height-threshold windows integer) |
258 (window-min-height windows integer) | |
259 (window-min-width windows integer) | |
24840
37fd40af2d49
(scroll-preserve-screen-position): Fix typo in type.
Karl Heuer <kwzh@gnu.org>
parents:
24758
diff
changeset
|
260 (scroll-preserve-screen-position windows boolean) |
30978 | 261 (display-buffer-reuse-frames windows boolean "21.1") |
17416 | 262 ;; xdisp.c |
263 (scroll-step windows integer) | |
24758
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
264 (scroll-conservatively windows integer) |
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
265 (scroll-margin windows integer) |
43662
63efe0df9e87
Rename automatic-hscroll-step and
Eli Zaretskii <eliz@gnu.org>
parents:
43376
diff
changeset
|
266 (hscroll-margin windows integer "21.3") |
63efe0df9e87
Rename automatic-hscroll-step and
Eli Zaretskii <eliz@gnu.org>
parents:
43376
diff
changeset
|
267 (hscroll-step windows number "21.3") |
17416 | 268 (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
|
269 (mode-line-inverse-video modeline boolean) |
43284
62ca366c7991
Added mode-line-in-non-selected-windows.
Kim F. Storm <storm@cua.dk>
parents:
43235
diff
changeset
|
270 (mode-line-in-non-selected-windows modeline boolean "21.3") |
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
271 (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
|
272 (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
|
273 (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
|
274 (line-number-display-limit-width display integer) |
17416 | 275 (highlight-nonselected-windows display boolean) |
276 (message-log-max debug (choice (const :tag "Disable" nil) | |
277 (integer :menu-tag "lines" | |
278 :format "%v") | |
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
279 (other :tag "Unlimited" t))) |
24628
fc7a39405297
(all): Handle unibyte-display-via-language-environment.
Karl Heuer <kwzh@gnu.org>
parents:
24202
diff
changeset
|
280 (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
|
281 (blink-cursor-alist cursor alist "22.1") |
48075
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
282 ;; xfaces.c |
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
283 (scalable-fonts-allowed display boolean) |
17416 | 284 ;; xfns.c |
285 (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
|
286 (repeat (directory :format "%v"))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59739
diff
changeset
|
287 (x-use-old-gtk-file-dialog menu boolean "22.1") |
25296
59e6ee29c69b
Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
Dave Love <fx@gnu.org>
parents:
24840
diff
changeset
|
288 ;; xterm.c |
44357
4bbde6981301
Rename `autoselect-window' to `mouse-autoselect-window'.
Pavel Janík <Pavel@Janik.cz>
parents:
44304
diff
changeset
|
289 (mouse-autoselect-window display boolean "21.3") |
43111
6b161ffa5ef3
(x-use-underline-position-properties): Allow customization.
Pavel Janík <Pavel@Janik.cz>
parents:
43035
diff
changeset
|
290 (x-use-underline-position-properties display boolean "21.3") |
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
291 (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
|
292 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
|
293 ;; This function turns a value |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
294 ;; 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
|
295 (quoter (lambda (sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
296 (if (or (memq sexp '(t nil)) |
28569 | 297 (keywordp sexp) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
298 (and (listp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
299 (memq (car sexp) '(lambda))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
300 (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
|
301 (numberp sexp)) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
302 sexp |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
303 (list 'quote sexp))))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
304 (while all |
17416 | 305 (setq this (car all) |
306 all (cdr all) | |
307 symbol (nth 0 this) | |
308 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
|
309 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
|
310 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
|
311 ;; 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
|
312 ;; 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
|
313 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
|
314 (nth 4 this) |
60096
a9e9af4690d5
(all): Use default-boundp.
Richard M. Stallman <rms@gnu.org>
parents:
60062
diff
changeset
|
315 (when (default-boundp symbol) |
60057
c81f31db6e84
(all): Check if symbol is void.
Lute Kamstra <lute@gnu.org>
parents:
60033
diff
changeset
|
316 (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
|
317 ;; 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
|
318 ;; irrelevant to this platform. |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
319 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
|
320 (cond |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
321 ((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
|
322 (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
|
323 ((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
|
324 (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
|
325 ((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
|
326 (fboundp 'x-create-frame)) |
23967
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
327 (t t)))) |
17416 | 328 (if (not (boundp symbol)) |
329 ;; 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
|
330 (and native-p |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
331 (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
|
332 ;; 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
|
333 (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
|
334 (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
|
335 ;; 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
|
336 ;; 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
|
337 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
338 ;; Add it to the right group. |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
339 (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
|
340 ;; 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
|
341 (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
|
342 (put symbol 'custom-version version))))) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
343 |
33922 | 344 (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
|
345 (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
|
346 'custom-variable) |
48075
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
347 (put 'selection-coding-system 'custom-set |
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
348 (lambda (symbol value) |
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
349 (set-selection-coding-system value) |
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
350 (set symbol value))) |
33922 | 351 |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
352 ;; Record cus-start as loaded |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
353 ;; 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
|
354 ;; 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
|
355 ;; 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
|
356 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
357 (provide 'cus-start)) |
17416 | 358 |
52401 | 359 ;;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60 |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
35966
diff
changeset
|
360 ;;; cus-start.el ends here |