Mercurial > emacs
annotate lisp/cus-start.el @ 42811:cf0c0ef57504
*** empty log message ***
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Thu, 17 Jan 2002 19:29:24 +0000 |
| parents | b825c024c5de |
| children | 225a3a5477a9 |
| 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 ;; |
|
40413
eb91dd2d9bcf
(recursive-load-depth-limit): Added.
Gerd Moellmann <gerd@gnu.org>
parents:
38409
diff
changeset
|
3 ;; Copyright (C) 1997, 1999, 2000, 2001 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 | |
| 37 (let ((all '(;; abbrev.c | |
| 38 (abbrev-all-caps abbrev-mode boolean) | |
| 39 (pre-abbrev-expand-hook abbrev-mode hook) | |
| 40 ;; alloc.c | |
| 41 (gc-cons-threshold alloc integer) | |
| 42 (undo-limit undo integer) | |
| 43 (undo-strong-limit undo integer) | |
| 44 (garbage-collection-messages alloc boolean) | |
| 45 ;; buffer.c | |
| 46 (mode-line-format modeline sexp) ;Hard to do right. | |
| 47 (default-major-mode internal function) | |
|
18496
dd3b72558628
(enable-multibyte-characters): Customize.
Richard M. Stallman <rms@gnu.org>
parents:
18478
diff
changeset
|
48 (enable-multibyte-characters mule boolean) |
| 17416 | 49 (case-fold-search matching boolean) |
| 50 (fill-column fill integer) | |
| 51 (left-margin fill integer) | |
| 52 (tab-width editing-basics integer) | |
| 53 (ctl-arrow display boolean) | |
| 54 (truncate-lines display boolean) | |
| 55 (selective-display-ellipses display boolean) | |
| 56 (transient-mark-mode editing-basics 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
|
57 (indicate-empty-lines display boolean "21.1") |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
58 (scroll-up-aggressively windows boolean "21.1") |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
59 (scroll-down-aggressively windows boolean "21.1") |
| 17416 | 60 ;; callint.c |
| 61 (mark-even-if-inactive editing-basics boolean) | |
| 62 ;; callproc.c | |
| 63 (shell-file-name execute file) | |
| 64 (exec-path execute | |
| 65 (repeat (choice (const :tag "default" nil) | |
| 66 (file :format "%v")))) | |
| 24057 | 67 ;; coding.c |
| 68 (inhibit-eol-conversion mule boolean) | |
|
24202
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
69 (eol-mnemonic-undecided mule string) |
|
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
70 (eol-mnemonic-unix mule string) |
|
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
71 (eol-mnemonic-dos mule string) |
|
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
72 (eol-mnemonic-mac mule string) |
| 30978 | 73 (file-coding-system-alist |
| 74 mule | |
| 75 (alist | |
| 76 :key-type (regexp :tag "File regexp") | |
| 77 :value-type (choice | |
| 78 :value (undecided . undecided) | |
| 79 (cons :tag "Encoding/decoding pair" | |
| 80 :value (undecided . undecided) | |
| 81 (coding-system :tag "Decoding") | |
| 82 (coding-system :tag "Encoding")) | |
| 83 (coding-system :tag "Single coding system" | |
| 84 :value undecided) | |
| 85 (function :value ignore)))) | |
| 17416 | 86 ;; dired.c |
| 87 (completion-ignored-extensions dired | |
| 88 (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
|
89 ;; dispnew.c |
| 17416 | 90 (baud-rate display integer) |
| 91 (inverse-video display boolean) | |
| 92 (visible-bell display boolean) | |
| 93 (no-redraw-on-reenter display boolean) | |
| 94 ;; editfns.c | |
| 95 (user-full-name mail string) | |
| 96 ;; eval.c | |
| 97 (max-specpdl-size limits integer) | |
| 98 (max-lisp-eval-depth limits integer) | |
| 99 (stack-trace-on-error debug | |
| 100 (choice (const :tag "off") | |
| 101 (repeat :menu-tag "When" | |
| 102 :value (nil) | |
| 103 (symbol :format "%v")) | |
| 104 (const :tag "always" t))) | |
| 105 (debug-on-error debug | |
| 106 (choice (const :tag "off") | |
| 107 (repeat :menu-tag "When" | |
| 108 :value (nil) | |
| 109 (symbol :format "%v")) | |
| 110 (const :tag "always" t))) | |
| 111 (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
|
112 (debug-on-quit debug |
|
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
113 (choice (const :tag "off") |
|
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
114 (repeat :menu-tag "When" |
|
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
115 :value (nil) |
|
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
116 (symbol :format "%v")) |
|
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
117 (const :tag "always" t))) |
| 17416 | 118 ;; fileio.c |
| 119 (insert-default-directory minibuffer boolean) | |
| 26619 | 120 ;; 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
|
121 (use-dialog-box menu boolean "21.1") |
| 17416 | 122 ;; frame.c |
| 123 (default-frame-alist frames | |
| 124 (repeat (cons :format "%v" | |
| 125 (symbol :tag "Parameter") | |
| 126 (sexp :tag "Value")))) | |
| 127 ;; indent.c | |
| 128 (indent-tabs-mode fill boolean) | |
| 129 ;; keyboard.c | |
| 130 (meta-prefix-char keyboard character) | |
| 131 (auto-save-interval auto-save integer) | |
| 132 (auto-save-timeout auto-save (choice (const :tag "off" nil) | |
| 133 (integer :format "%v"))) | |
| 27768 | 134 (echo-keystrokes minibuffer number) |
| 17416 | 135 (polling-period keyboard integer) |
|
18478
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
136 (double-click-time mouse (restricted-sexp |
|
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
137 :match-alternatives (integerp 'nil 't))) |
| 17416 | 138 (inhibit-local-menu-bar-menus menu boolean) |
| 139 (help-char keyboard character) | |
| 140 (help-event-list keyboard (repeat (sexp :format "%v"))) | |
| 141 (menu-prompting menu boolean) | |
| 142 (suggest-key-bindings keyboard (choice (const :tag "off" nil) | |
| 143 (integer :tag "time" 2) | |
|
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
144 (other :tag "on"))) |
|
41604
b825c024c5de
(recursive-load-depth-limit): Delete item.
Richard M. Stallman <rms@gnu.org>
parents:
40413
diff
changeset
|
145 |
|
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
146 ;; 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
|
147 ;; 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
|
148 ;; 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
|
149 ;; value intact at the back. |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
150 ;;; (load-path environment |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
151 ;;; (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
|
152 ;;; :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
|
153 ;;; (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
|
154 ;;; (directory :format "%v")))) |
| 17416 | 155 ;; minibuf.c |
| 156 (completion-auto-help minibuffer boolean) | |
| 157 (enable-recursive-minibuffers minibuffer boolean) | |
|
33684
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
158 (minibuffer-prompt-properties |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
159 minibuffer |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
160 (list |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
161 (checklist :inline t |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
162 (const :tag "Read-Only" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
163 :doc "Prevent prompt from being modified" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
164 :format "%t%n%h" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
165 :inline t |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
166 (read-only t)) |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
167 (const :tag "Inviolable" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
168 :doc "Prevent point from ever entering prompt" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
169 :format "%t%n%h" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
170 :inline t |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
171 (point-entered minibuffer-avoid-prompt))) |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
172 (repeat :inline t |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
173 :tag "Other Properties" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
174 (list :inline t |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
175 :format "%v" |
|
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
176 (symbol :tag "Property") |
| 33922 | 177 (sexp :tag "Value")))) |
| 178 "21.1") | |
| 17416 | 179 (minibuffer-auto-raise minibuffer boolean) |
| 33922 | 180 ;; options property set at end |
| 34064 | 181 (read-buffer-function minibuffer |
| 182 (choice (const nil) | |
| 183 (function-item iswitchb-read-buffer) | |
| 184 function)) | |
|
23863
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
185 ;; msdos.c |
|
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
186 (dos-unsupported-char-glyph display integer) |
| 17416 | 187 ;; process.c |
|
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
188 (delete-exited-processes processes-basics boolean) |
| 17416 | 189 ;; syntax.c |
| 190 (parse-sexp-ignore-comments editing-basics boolean) | |
| 191 (words-include-escapes editing-basics boolean) | |
| 192 ;; window.c | |
|
35966
911b5aa7fe8d
(temp-buffer-show-function, display-buffer-function): Fix :type.
Dave Love <fx@gnu.org>
parents:
34263
diff
changeset
|
193 (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
|
194 (display-buffer-function windows (choice (const nil) function)) |
| 17416 | 195 (pop-up-frames frames boolean) |
| 196 (pop-up-frame-function frames function) | |
| 197 (special-display-buffer-names | |
| 198 frames | |
| 199 (repeat (choice :tag "Buffer" | |
| 200 :value "" | |
| 201 (string :format "%v") | |
| 202 (cons :tag "With attributes" | |
| 203 :format "%v" | |
| 204 :value ("" . nil) | |
| 205 (string :format "%v") | |
| 206 (repeat :tag "Attributes" | |
| 207 (cons :format "%v" | |
| 208 (symbol :tag "Parameter") | |
| 209 (sexp :tag "Value"))))))) | |
| 210 (special-display-regexps | |
| 211 frames | |
| 212 (repeat (choice :tag "Buffer" | |
| 213 :value "" | |
| 214 (regexp :format "%v") | |
| 215 (cons :tag "With attributes" | |
| 216 :format "%v" | |
| 217 :value ("" . nil) | |
| 218 (regexp :format "%v") | |
| 219 (repeat :tag "Attributes" | |
| 220 (cons :format "%v" | |
| 221 (symbol :tag "Parameter") | |
| 222 (sexp :tag "Value"))))))) | |
| 223 (special-display-function frames function) | |
| 224 (same-window-buffer-names windows (repeat (string :format "%v"))) | |
| 225 (same-window-regexps windows (repeat (regexp :format "%v"))) | |
| 226 (pop-up-windows windows boolean) | |
|
34263
56d868415168
Add entry for even-window-heights.
Gerd Moellmann <gerd@gnu.org>
parents:
34064
diff
changeset
|
227 (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
|
228 (next-screen-context-lines windows integer) |
| 17416 | 229 (split-height-threshold windows integer) |
| 230 (window-min-height windows integer) | |
| 231 (window-min-width windows integer) | |
|
24840
37fd40af2d49
(scroll-preserve-screen-position): Fix typo in type.
Karl Heuer <kwzh@gnu.org>
parents:
24758
diff
changeset
|
232 (scroll-preserve-screen-position windows boolean) |
| 30978 | 233 (display-buffer-reuse-frames windows boolean "21.1") |
| 17416 | 234 ;; xdisp.c |
| 235 (scroll-step windows integer) | |
|
24758
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
236 (scroll-conservatively windows integer) |
|
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
237 (scroll-margin windows integer) |
| 17416 | 238 (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
|
239 (mode-line-inverse-video modeline 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
|
240 (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
|
241 (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
|
242 (const :tag "No limit" nil))) |
| 17416 | 243 (highlight-nonselected-windows display boolean) |
| 244 (message-log-max debug (choice (const :tag "Disable" nil) | |
| 245 (integer :menu-tag "lines" | |
| 246 :format "%v") | |
|
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
247 (other :tag "Unlimited" t))) |
|
24628
fc7a39405297
(all): Handle unibyte-display-via-language-environment.
Karl Heuer <kwzh@gnu.org>
parents:
24202
diff
changeset
|
248 (unibyte-display-via-language-environment mule boolean) |
| 17416 | 249 ;; xfns.c |
| 250 (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
|
251 (repeat (directory :format "%v"))) |
|
59e6ee29c69b
Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
Dave Love <fx@gnu.org>
parents:
24840
diff
changeset
|
252 ;; xterm.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
|
253 (x-stretch-cursor display boolean "21.1"))) |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
254 this symbol group type native-p version |
|
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
255 ;; This function turns a value |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
256 ;; 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
|
257 (quoter (lambda (sexp) |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
258 (if (or (memq sexp '(t nil)) |
| 28569 | 259 (keywordp sexp) |
|
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
260 (and (listp sexp) |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
261 (memq (car sexp) '(lambda))) |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
262 (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
|
263 ;; (and (fboundp 'characterp) |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
264 ;; (characterp sexp)) |
|
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
265 (numberp sexp)) |
|
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
266 sexp |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
267 (list 'quote sexp))))) |
| 17416 | 268 (while all |
| 269 (setq this (car all) | |
| 270 all (cdr all) | |
| 271 symbol (nth 0 this) | |
| 272 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
|
273 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
|
274 version (nth 3 this) |
|
23967
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
275 ;; 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
|
276 ;; irrelevant to this platform. |
|
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
277 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
|
278 (cond |
|
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
279 ((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
|
280 (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
|
281 ((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
|
282 (eq system-type 'windows-nt)) |
|
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
283 (t t)))) |
| 17416 | 284 (if (not (boundp symbol)) |
| 285 ;; 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
|
286 (and native-p |
|
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
287 (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
|
288 ;; 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
|
289 (or (get symbol 'standard-value) |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
290 (put symbol 'standard-value |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
291 (list (funcall quoter (default-value symbol))))) |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
292 ;; 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
|
293 ;; 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
|
294 (unless purify-flag |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
295 ;; Add it to the right group. |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
296 (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
|
297 ;; 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
|
298 (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
|
299 (put symbol 'custom-version version))))) |
|
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
300 |
| 33922 | 301 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) |
| 302 | |
|
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
303 ;; Record cus-start as loaded |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
304 ;; 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
|
305 ;; 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
|
306 ;; 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
|
307 (unless purify-flag |
|
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
308 (provide 'cus-start)) |
| 17416 | 309 |
|
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
35966
diff
changeset
|
310 ;;; cus-start.el ends here |
