Mercurial > emacs
annotate lisp/cus-start.el @ 111732:6098376da331
color.el: Rename various rgb functions to srgb.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 26 Nov 2010 11:19:00 +0000 |
parents | 1303259207a9 |
children | 417b1e4d63cd |
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 ;; |
111239
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
4 ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
17416 | 5 ;; |
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
7 ;; Keywords: internal | |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
109802
diff
changeset
|
8 ;; Package: emacs |
17416 | 9 |
17520 | 10 ;; This file is part of GNU Emacs. |
11 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94300
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17520 | 13 ;; 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
|
14 ;; 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
|
15 ;; (at your option) any later version. |
17520 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; 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
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17520 | 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 | |
111272
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
37 ;; Elements of this list have the form: |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
38 ;; SYMBOL GROUP TYPE VERSION REST... |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
39 ;; SYMBOL is the name of the variable. |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
40 ;; GROUP is the custom group to which it belongs (may also be a list |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
41 ;; of groups) |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
42 ;; TYPE is the defcustom :type. |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
43 ;; VERSION is the defcustom :version (or nil). |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
44 ;; REST is a set of :KEYWORD VALUE pairs. Accepted :KEYWORDs are: |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
45 ;; :standard - standard value for SYMBOL (else use current value) |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
46 ;; :set - custom-set property |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
47 ;; :risky - risky-local-variable property |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
48 ;; :safe - safe-local-variable property |
c5f89cc4d275
* lisp/cus-start.el: Explanatory comment.
Glenn Morris <rgm@gnu.org>
parents:
111266
diff
changeset
|
49 ;; :tag - custom-tag property |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85267
diff
changeset
|
50 (let ((all '(;; alloc.c |
17416 | 51 (gc-cons-threshold alloc integer) |
60062
016ddb2eb0c6
(all): Comment change.
Luc Teirlinck <teirllm@auburn.edu>
parents:
60057
diff
changeset
|
52 (garbage-collection-messages alloc boolean) |
17416 | 53 ;; buffer.c |
79584
07542a9cc2b3
(all): Use correct group name for members of mode-line group.
Martin Rudalics <rudalics@gmx.at>
parents:
78992
diff
changeset
|
54 (mode-line-format mode-line sexp) ;Hard to do right. |
104626
caa79498564a
* subr.el (default-mode-line-format, default-header-line-format)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103704
diff
changeset
|
55 (major-mode internal function) |
17416 | 56 (case-fold-search matching boolean) |
57 (fill-column fill integer) | |
58 (left-margin fill integer) | |
59 (tab-width editing-basics integer) | |
60 (ctl-arrow display boolean) | |
61 (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
|
62 (word-wrap display boolean) |
17416 | 63 (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
|
64 (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
|
65 (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
|
66 fringe |
37b0b02afa4e
(all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64139
diff
changeset
|
67 (choice |
37b0b02afa4e
(all): Put `indicate-empty-lines' in fringe group instead of display group.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64139
diff
changeset
|
68 (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
|
69 (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
|
70 (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
|
71 (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
|
72 :value ((t . nil)) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
73 :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
|
74 :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
|
75 for individual indicators. |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
76 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
|
77 \"Do not show\"." |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
78 (choice :tag "Default" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
79 :value (t . nil) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
80 (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
|
81 (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
|
82 (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
|
83 (choice :tag "Top" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
84 :value (top . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
85 (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
|
86 (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
|
87 (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
|
88 (choice :tag "Bottom" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
89 :value (bottom . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
90 (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
|
91 (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
|
92 (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
|
93 (choice :tag "Up arrow" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
94 :value (up . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
95 (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
|
96 (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
|
97 (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
|
98 (choice :tag "Down arrow" |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
99 :value (down . left) |
5d202bf110c9
(all): Make `indicate-buffer-boundaries' display values set outside
Luc Teirlinck <teirllm@auburn.edu>
parents:
64708
diff
changeset
|
100 (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
|
101 (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
|
102 (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
|
103 (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
|
104 (scroll-up-aggressively windows |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
105 (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
|
106 "21.1") |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
107 (scroll-down-aggressively windows |
f3fc48331bdc
(scroll-up-aggressively, scroll-down-aggressively): Update custom types.
Richard M. Stallman <rms@gnu.org>
parents:
48075
diff
changeset
|
108 (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
|
109 "21.1") |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
110 (line-spacing display (choice (const :tag "none" nil) integer) |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
111 "22.1") |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
112 (cursor-in-non-selected-windows |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
113 cursor boolean nil |
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
114 :tag "Cursor In Non-selected Windows" |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
115 :set #'(lambda (symbol value) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
116 (set-default symbol value) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
117 (force-mode-line-update t))) |
111222
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
118 (transient-mark-mode editing-basics boolean nil |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
119 :standard (not noninteractive) |
111239
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
120 :initialize custom-initialize-delay |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
121 :set custom-set-minor-mode) |
17416 | 122 ;; callint.c |
123 (mark-even-if-inactive editing-basics boolean) | |
124 ;; callproc.c | |
125 (shell-file-name execute file) | |
126 (exec-path execute | |
64139
2fcfefeaac70
(exec-path): Fix tag for nil.
Richard M. Stallman <rms@gnu.org>
parents:
64138
diff
changeset
|
127 (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
|
128 (directory :format "%v")))) |
88574 | 129 ;; charset.c |
89789
fabd2ab3819f
Handle charset-map-path, not charset-map-directory.
Kenichi Handa <handa@m17n.org>
parents:
89483
diff
changeset
|
130 (charset-map-path installation |
fabd2ab3819f
Handle charset-map-path, not charset-map-directory.
Kenichi Handa <handa@m17n.org>
parents:
89483
diff
changeset
|
131 (repeat (directory :format "%v"))) |
24057 | 132 ;; coding.c |
133 (inhibit-eol-conversion mule boolean) | |
24202
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
134 (eol-mnemonic-undecided mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
135 (eol-mnemonic-unix mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
136 (eol-mnemonic-dos mule string) |
afc9a7e3752f
(all): Add eol-mnemonic-* variables.
Eli Zaretskii <eliz@gnu.org>
parents:
24057
diff
changeset
|
137 (eol-mnemonic-mac mule string) |
30978 | 138 (file-coding-system-alist |
139 mule | |
140 (alist | |
141 :key-type (regexp :tag "File regexp") | |
78091
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
142 :value-type (choice |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
143 :value (undecided . undecided) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
144 (cons :tag "Encoding/decoding pair" |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
145 :value (undecided . undecided) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
146 (coding-system :tag "Decoding") |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
147 (coding-system :tag "Encoding")) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
148 (coding-system |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
149 :tag "Single coding system" |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
150 :value undecided |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
151 :match (lambda (widget value) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
152 (and value (not (functionp value))))) |
35e7de7eae29
(file-coding-system-alist): Fix previous commit.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
78089
diff
changeset
|
153 (function :value ignore)))) |
17416 | 154 ;; dired.c |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
155 (completion-ignored-extensions dired |
17416 | 156 (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
|
157 ;; dispnew.c |
17416 | 158 (baud-rate display integer) |
159 (inverse-video display boolean) | |
160 (visible-bell display boolean) | |
161 (no-redraw-on-reenter display boolean) | |
162 ;; editfns.c | |
163 (user-full-name mail string) | |
164 ;; eval.c | |
165 (max-specpdl-size limits integer) | |
166 (max-lisp-eval-depth limits integer) | |
81677
a01517ba35e8
(max-mini-window-height): Added.
Richard M. Stallman <rms@gnu.org>
parents:
77068
diff
changeset
|
167 (max-mini-window-height limits |
a01517ba35e8
(max-mini-window-height): Added.
Richard M. Stallman <rms@gnu.org>
parents:
77068
diff
changeset
|
168 (choice (const :tag "quarter screen" nil) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
169 number) "23.1") |
17416 | 170 (stack-trace-on-error debug |
171 (choice (const :tag "off") | |
172 (repeat :menu-tag "When" | |
173 :value (nil) | |
174 (symbol :format "%v")) | |
175 (const :tag "always" t))) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
176 (debug-on-error debug |
17416 | 177 (choice (const :tag "off") |
178 (repeat :menu-tag "When" | |
179 :value (nil) | |
180 (symbol :format "%v")) | |
181 (const :tag "always" t))) | |
182 (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
|
183 (debug-on-quit debug |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
184 (choice (const :tag "off") |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
185 (repeat :menu-tag "When" |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
186 :value (nil) |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
187 (symbol :format "%v")) |
f7e3c766f54c
(debug-on-quit): Define like debug-on-error.
Richard M. Stallman <rms@gnu.org>
parents:
18727
diff
changeset
|
188 (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
|
189 ;; fileio.c |
b76b9628d74f
Changes from Toru Tsuneyoshi for using Trash can when deleting files.
Jason Rumney <jasonr@gnu.org>
parents:
96336
diff
changeset
|
190 (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
|
191 (auto-save-visited-file-name auto-save boolean) |
111223
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
192 ;; filelock.c |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
193 (temporary-file-directory |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
194 ;; Darwin section added 24.1, does not seem worth :version bump. |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
195 files directory nil |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
196 :standard |
111223
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
197 (file-name-as-directory |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
198 ;; FIXME ? Should there be Ftemporary_file_directory to do this |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
199 ;; more robustly (cf set_local_socket in emacsclient.c). |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
200 ;; It could be used elsewhere, eg Fcall_process_region, |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
201 ;; server-socket-dir. See bug#7135. |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
202 (cond ((memq system-type '(ms-dos windows-nt)) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
203 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
204 "c:/temp")) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
205 ((eq system-type 'darwin) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
206 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
207 ;; See bug#7135. |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
208 (let ((tmp (ignore-errors |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
209 (shell-command-to-string |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
210 "getconf DARWIN_USER_TEMP_DIR")))) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
211 (and (stringp tmp) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
212 (setq tmp (replace-regexp-in-string |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
213 "\n\\'" "" tmp)) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
214 ;; Handles "getconf: Unrecognized variable..." |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
215 (file-directory-p tmp) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
216 tmp)) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
217 "/tmp")) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
218 (t |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
219 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
220 "/tmp")))) |
0cd3fc7f7dba
Remove duplicate Lisp definition of temporary-file-directory, from filelock.c.
Glenn Morris <rgm@gnu.org>
parents:
111222
diff
changeset
|
221 :initialize custom-initialize-delay) |
26619 | 222 ;; 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
|
223 (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
|
224 (use-file-dialog menu boolean "22.1") |
78992
15fe36cffb96
(all): Add focus-follows-mouse.
Martin Rudalics <rudalics@gmx.at>
parents:
78236
diff
changeset
|
225 (focus-follows-mouse frames boolean "20.3") |
17416 | 226 ;; frame.c |
227 (default-frame-alist frames | |
228 (repeat (cons :format "%v" | |
229 (symbol :tag "Parameter") | |
230 (sexp :tag "Value")))) | |
43376 | 231 (mouse-highlight mouse (choice (const :tag "disabled" nil) |
232 (const :tag "always shown" t) | |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
233 (other :tag "hidden by keypress" 1)) |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
234 "22.1") |
103704
6a4e411bd83b
* xterm.h (struct x_display_info): Add invisible_cursor.
Jan Djärv <jan.h.d@swipnet.se>
parents:
103557
diff
changeset
|
235 (make-pointer-invisible mouse boolean "23.2") |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
236 (menu-bar-mode frames boolean nil |
111239
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
237 ;; FIXME? |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
238 ; :initialize custom-initialize-default |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
239 :set custom-set-minor-mode) |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
240 (tool-bar-mode (frames mouse) boolean nil |
111239
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
241 ; :initialize custom-initialize-default |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
242 :set custom-set-minor-mode) |
64790
79faff912fc6
(all): Add `overflow-newline-into-fringe'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64762
diff
changeset
|
243 ;; fringe.c |
69440
4c675b9920d8
(all): Delete :version keyword for members of the fringe group, since
Luc Teirlinck <teirllm@auburn.edu>
parents:
68883
diff
changeset
|
244 (overflow-newline-into-fringe fringe boolean) |
17416 | 245 ;; indent.c |
72371
c1c598c2cd83
<indent-tabs-mode>: Move to the `indent' customization group.
Eli Zaretskii <eliz@gnu.org>
parents:
71355
diff
changeset
|
246 (indent-tabs-mode indent boolean) |
17416 | 247 ;; keyboard.c |
248 (meta-prefix-char keyboard character) | |
249 (auto-save-interval auto-save integer) | |
250 (auto-save-timeout auto-save (choice (const :tag "off" nil) | |
251 (integer :format "%v"))) | |
27768 | 252 (echo-keystrokes minibuffer number) |
17416 | 253 (polling-period keyboard integer) |
18478
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
254 (double-click-time mouse (restricted-sexp |
74399f15f71e
(double-click-time): Use restricted-sexp.
Richard M. Stallman <rms@gnu.org>
parents:
18434
diff
changeset
|
255 :match-alternatives (integerp 'nil 't))) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
256 (double-click-fuzz mouse integer "22.1") |
17416 | 257 (inhibit-local-menu-bar-menus menu boolean) |
258 (help-char keyboard character) | |
259 (help-event-list keyboard (repeat (sexp :format "%v"))) | |
260 (menu-prompting menu boolean) | |
109678
14830418f9fc
Change `select-active-region' mechanics.
Chong Yidong <cyd@stupidchicken.com>
parents:
109604
diff
changeset
|
261 (select-active-regions killing |
109802
acc05fd0631b
Let all active regions set the primary selection.
Chong Yidong <cyd@stupidchicken.com>
parents:
109678
diff
changeset
|
262 (choice (const :tag "always" t) |
acc05fd0631b
Let all active regions set the primary selection.
Chong Yidong <cyd@stupidchicken.com>
parents:
109678
diff
changeset
|
263 (const :tag "only shift-selection or mouse-drag" only) |
109678
14830418f9fc
Change `select-active-region' mechanics.
Chong Yidong <cyd@stupidchicken.com>
parents:
109604
diff
changeset
|
264 (const :tag "off" nil)) |
14830418f9fc
Change `select-active-region' mechanics.
Chong Yidong <cyd@stupidchicken.com>
parents:
109604
diff
changeset
|
265 "24.1") |
17416 | 266 (suggest-key-bindings keyboard (choice (const :tag "off" nil) |
267 (integer :tag "time" 2) | |
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
268 (other :tag "on"))) |
41604
b825c024c5de
(recursive-load-depth-limit): Delete item.
Richard M. Stallman <rms@gnu.org>
parents:
40413
diff
changeset
|
269 |
30167
83e9db7aeddb
Add optional version as 4th element of specs and use it for several
Dave Love <fx@gnu.org>
parents:
28569
diff
changeset
|
270 ;; 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
|
271 ;; 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
|
272 ;; 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
|
273 ;; value intact at the back. |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
274 ;;; (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
|
275 ;;; (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
|
276 ;;; :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
|
277 ;;; (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
|
278 ;;; (directory :format "%v")))) |
17416 | 279 ;; minibuf.c |
280 (enable-recursive-minibuffers minibuffer boolean) | |
43035
225a3a5477a9
(history-length): Specify customization for it.
Richard M. Stallman <rms@gnu.org>
parents:
41604
diff
changeset
|
281 (history-length minibuffer |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
282 (choice (const :tag "Infinite" t) integer) |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
283 "22.1") |
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
284 (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
|
285 (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
|
286 |
33684
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
287 (minibuffer-prompt-properties |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
288 minibuffer |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
289 (list |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
290 (checklist :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
291 (const :tag "Read-Only" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
292 :doc "Prevent prompt from being modified" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
293 :format "%t%n%h" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
294 :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
295 (read-only t)) |
65043
0d1f97bd87d9
(minibuffer-prompt-properties): Correct typo.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65019
diff
changeset
|
296 (const :tag "Don't Enter" |
33684
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
297 :doc "Prevent point from ever entering prompt" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
298 :format "%t%n%h" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
299 :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
300 (point-entered minibuffer-avoid-prompt))) |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
301 (repeat :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
302 :tag "Other Properties" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
303 (list :inline t |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
304 :format "%v" |
1a9baca954a0
Add entry for `minibuffer-prompt-properties'.
Miles Bader <miles@gnu.org>
parents:
30978
diff
changeset
|
305 (symbol :tag "Property") |
33922 | 306 (sexp :tag "Value")))) |
307 "21.1") | |
17416 | 308 (minibuffer-auto-raise minibuffer boolean) |
33922 | 309 ;; options property set at end |
34064 | 310 (read-buffer-function minibuffer |
311 (choice (const nil) | |
312 (function-item iswitchb-read-buffer) | |
313 function)) | |
23863
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
314 ;; msdos.c |
478c3628a2cd
(dos-unsupported-char-glyph): Add.
Eli Zaretskii <eliz@gnu.org>
parents:
22571
diff
changeset
|
315 (dos-unsupported-char-glyph display integer) |
102664
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
316 ;; nsterm.m |
102667 | 317 (ns-control-modifier |
102676
100b06d58ef9
(all): Use existing `ns' rather than new `nextstep' group for variables affected by last two changes.
David Reitter <david.reitter@gmail.com>
parents:
102667
diff
changeset
|
318 ns |
102664
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
319 (choice (const :tag "No modifier" nil) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
320 (const control) (const meta) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
321 (const alt) (const hyper) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
322 (const super)) "23.1") |
111662
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
323 (ns-right-control-modifier |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
324 ns |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
325 (choice (const :tag "No modifier (work as control)" none) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
326 (const :tag "Use the value of ns-control-modifier" |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
327 left) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
328 (const control) (const meta) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
329 (const alt) (const hyper) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
330 (const super)) "24.0") |
102667 | 331 (ns-command-modifier |
102676
100b06d58ef9
(all): Use existing `ns' rather than new `nextstep' group for variables affected by last two changes.
David Reitter <david.reitter@gmail.com>
parents:
102667
diff
changeset
|
332 ns |
102664
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
333 (choice (const :tag "No modifier" nil) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
334 (const control) (const meta) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
335 (const alt) (const hyper) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
336 (const super)) "23.1") |
111662
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
337 (ns-right-command-modifier |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
338 ns |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
339 (choice (const :tag "No modifier (work as command)" none) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
340 (const :tag "Use the value of ns-command-modifier" |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
341 left) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
342 (const control) (const meta) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
343 (const alt) (const hyper) |
1303259207a9
Add separate key mappings for left/right control/command on Nextstep (Bug#7458).
Jan D. <jan.h.d@swipnet.se>
parents:
111272
diff
changeset
|
344 (const super)) "24.0") |
102667 | 345 (ns-alternate-modifier |
102676
100b06d58ef9
(all): Use existing `ns' rather than new `nextstep' group for variables affected by last two changes.
David Reitter <david.reitter@gmail.com>
parents:
102667
diff
changeset
|
346 ns |
102664
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
347 (choice (const :tag "No modifier (work as alternate/option)" none) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
348 (const control) (const meta) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
349 (const alt) (const hyper) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
350 (const super)) "23.1") |
110930
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
351 (ns-right-alternate-modifier |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
352 ns |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
353 (choice (const :tag "No modifier (work as alternate/option)" none) |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
354 (const :tag "Use the value of ns-alternate-modifier" |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
355 left) |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
356 (const control) (const meta) |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
357 (const alt) (const hyper) |
b6cf32bb07a1
Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
358 (const super)) "23.3") |
102667 | 359 (ns-function-modifier |
102676
100b06d58ef9
(all): Use existing `ns' rather than new `nextstep' group for variables affected by last two changes.
David Reitter <david.reitter@gmail.com>
parents:
102667
diff
changeset
|
360 ns |
102664
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
361 (choice (const :tag "No modifier (work as function)" none) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
362 (const control) (const meta) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
363 (const alt) (const hyper) |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
364 (const super)) "23.1") |
f59da3b2bad3
(all): add `ns-{control|command|alternate|function}-modifier', `ns-antialias-text' and `ns-use-qd-smoothing'
David Reitter <david.reitter@gmail.com>
parents:
100908
diff
changeset
|
365 (ns-antialias-text ns boolean "23.1") |
17416 | 366 ;; process.c |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
367 (delete-exited-processes processes-basics boolean) |
17416 | 368 ;; syntax.c |
369 (parse-sexp-ignore-comments editing-basics boolean) | |
370 (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
|
371 (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
|
372 "21.1") |
67936
07ec77ecb7b5
Add `visible-cursor'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67845
diff
changeset
|
373 ;; term.c |
07ec77ecb7b5
Add `visible-cursor'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67845
diff
changeset
|
374 (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
|
375 ;; undo.c |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
376 (undo-limit undo integer) |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
377 (undo-strong-limit undo integer) |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
378 (undo-outer-limit undo |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
379 (choice integer |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
380 (const :tag "No limit" |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
381 :format "%t\n%d" |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
382 :doc |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
383 "With this choice, \ |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
384 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
|
385 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
|
386 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
|
387 nil)) |
b991ecaae196
(all): Put undo.c where it alphabetically belongs.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64711
diff
changeset
|
388 "22.1") |
17416 | 389 ;; window.c |
35966
911b5aa7fe8d
(temp-buffer-show-function, display-buffer-function): Fix :type.
Dave Love <fx@gnu.org>
parents:
34263
diff
changeset
|
390 (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
|
391 (next-screen-context-lines windows integer) |
17416 | 392 (window-min-height windows integer) |
393 (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
|
394 (scroll-preserve-screen-position |
1ab9d1057ad0
2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents:
75347
diff
changeset
|
395 windows (choice |
1ab9d1057ad0
2007-04-08 Martin Rudalics <rudalics@gmx.at>
Kim F. Storm <storm@cua.dk>
parents:
75347
diff
changeset
|
396 (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
|
397 (const :tag "Full screen (t)" :value t) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
398 (other :tag "Always" 1)) "22.1") |
103557
f52eb7cf1c20
Add the `recenter-redisplay' variable, and make `recenter' use it.
Miles Bader <miles@gnu.org>
parents:
102745
diff
changeset
|
399 (recenter-redisplay windows |
f52eb7cf1c20
Add the `recenter-redisplay' variable, and make `recenter' use it.
Miles Bader <miles@gnu.org>
parents:
102745
diff
changeset
|
400 (choice |
f52eb7cf1c20
Add the `recenter-redisplay' variable, and make `recenter' use it.
Miles Bader <miles@gnu.org>
parents:
102745
diff
changeset
|
401 (const :tag "Never (nil)" :value nil) |
f52eb7cf1c20
Add the `recenter-redisplay' variable, and make `recenter' use it.
Miles Bader <miles@gnu.org>
parents:
102745
diff
changeset
|
402 (const :tag "Only on ttys" :value tty) |
f52eb7cf1c20
Add the `recenter-redisplay' variable, and make `recenter' use it.
Miles Bader <miles@gnu.org>
parents:
102745
diff
changeset
|
403 (other :tag "Always" t)) |
f52eb7cf1c20
Add the `recenter-redisplay' variable, and make `recenter' use it.
Miles Bader <miles@gnu.org>
parents:
102745
diff
changeset
|
404 "23.1") |
17416 | 405 ;; xdisp.c |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
406 (show-trailing-whitespace whitespace-faces boolean nil |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
407 :safe booleanp) |
17416 | 408 (scroll-step windows integer) |
24758
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
409 (scroll-conservatively windows integer) |
16c7330ad116
(all): Delete selective-display. Add scroll-margin,
Richard M. Stallman <rms@gnu.org>
parents:
24628
diff
changeset
|
410 (scroll-margin windows integer) |
72611
231eb88f2558
(hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents:
72506
diff
changeset
|
411 (hscroll-margin windows integer "22.1") |
231eb88f2558
(hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents:
72506
diff
changeset
|
412 (hscroll-step windows number "22.1") |
97813
2ff12d3be8a7
(truncate-partial-width-windows): Changed in 23.1.
Glenn Morris <rgm@gnu.org>
parents:
97300
diff
changeset
|
413 (truncate-partial-width-windows display boolean "23.1") |
79584
07542a9cc2b3
(all): Use correct group name for members of mode-line group.
Martin Rudalics <rudalics@gmx.at>
parents:
78992
diff
changeset
|
414 (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
|
415 (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
|
416 (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
|
417 (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
|
418 (const :tag "No limit" nil))) |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
419 (line-number-display-limit-width display integer "22.1") |
17416 | 420 (highlight-nonselected-windows display boolean) |
421 (message-log-max debug (choice (const :tag "Disable" nil) | |
422 (integer :menu-tag "lines" | |
423 :format "%v") | |
22571
4aebb136294f
(selective-display, suggest-key-bindings,
Andreas Schwab <schwab@suse.de>
parents:
21407
diff
changeset
|
424 (other :tag "Unlimited" t))) |
24628
fc7a39405297
(all): Handle unibyte-display-via-language-environment.
Karl Heuer <kwzh@gnu.org>
parents:
24202
diff
changeset
|
425 (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
|
426 (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
|
427 (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
|
428 (underline-minimum-offset display integer "23.1") |
72737
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
429 (mouse-autoselect-window |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
430 display (choice |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
431 (const :tag "Off (nil)" :value nil) |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
432 (const :tag "Immediate" :value t) |
455031002c62
* window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents:
72611
diff
changeset
|
433 (number :tag "Delay by secs" :value 0.5)) "22.1") |
108024
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
434 (tool-bar-style |
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
435 frames (choice |
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
436 (const :tag "Images" :value image) |
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
437 (const :tag "Text" :value text) |
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
438 (const :tag "Both" :value both) |
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
439 (const :tag "Both-horiz" :value both-horiz) |
109566
d03bc4a3fced
Add tool bar style text-image-horiz (text to the left of the image).
Jan D. <jan.h.d@swipnet.se>
parents:
108300
diff
changeset
|
440 (const :tag "Text-image-horiz" :value text-image-horiz) |
108024
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
441 (const :tag "System default" :value nil)) "23.3") |
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
442 (tool-bar-max-label-size frames integer "23.3") |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
443 (auto-hscroll-mode scrolling boolean "21.1") |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
444 (display-hourglass cursor boolean) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
445 (hourglass-delay cursor number) |
108024
4d8277a44bb4
Gtk tool bars can be text, icons with text or just icons.
Jan D. <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
446 |
48075
801530a6c168
(selection-coding-system, scalable-fonts-allowed):
Dave Love <fx@gnu.org>
parents:
47358
diff
changeset
|
447 ;; xfaces.c |
87708
c52802cd7e09
(all): Add missing version entries.
Martin Rudalics <rudalics@gmx.at>
parents:
87649
diff
changeset
|
448 (scalable-fonts-allowed display boolean "22.1") |
17416 | 449 ;; xfns.c |
450 (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
|
451 (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
|
452 (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
|
453 (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
|
454 (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
|
455 (x-gtk-whole-detached-tool-bar x boolean "22.1") |
109604
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109566
diff
changeset
|
456 (x-gtk-use-system-tooltips tooltip boolean "23.3") |
25296
59e6ee29c69b
Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
Dave Love <fx@gnu.org>
parents:
24840
diff
changeset
|
457 ;; xterm.c |
72611
231eb88f2558
(hscroll-margin, hscroll-step)
Eli Zaretskii <eliz@gnu.org>
parents:
72506
diff
changeset
|
458 (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
|
459 (x-underline-at-descent-line display boolean "22.1") |
106097
5fa329215a93
xsettings.c didn't check font-use-system-font, fix that.
Jan Djärv <jan.h.d@swipnet.se>
parents:
105087
diff
changeset
|
460 (x-stretch-cursor display boolean "21.1") |
5fa329215a93
xsettings.c didn't check font-use-system-font, fix that.
Jan Djärv <jan.h.d@swipnet.se>
parents:
105087
diff
changeset
|
461 ;; xsettings.c |
5fa329215a93
xsettings.c didn't check font-use-system-font, fix that.
Jan Djärv <jan.h.d@swipnet.se>
parents:
105087
diff
changeset
|
462 (font-use-system-font font-selection boolean "23.2"))) |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
463 this symbol group type standard version native-p rest prop propval |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
464 ;; This function turns a value |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
465 ;; 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
|
466 (quoter (lambda (sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
467 (if (or (memq sexp '(t nil)) |
28569 | 468 (keywordp sexp) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
469 (and (listp sexp) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
470 (memq (car sexp) '(lambda))) |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
471 (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
|
472 (numberp sexp)) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
473 sexp |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
474 (list 'quote sexp))))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48939
diff
changeset
|
475 (while all |
17416 | 476 (setq this (car all) |
477 all (cdr all) | |
478 symbol (nth 0 this) | |
479 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
|
480 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
|
481 version (nth 3 this) |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
482 rest (nthcdr 4 this) |
60033
ec4864463fc2
(all): Allow a var to specify a standard value.
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
483 ;; 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
|
484 ;; use the current value as the standard value. |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
485 standard (if (setq prop (memq :standard rest)) |
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
486 (cadr prop) |
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
487 (if (default-boundp symbol) |
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
488 (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
|
489 ;; 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
|
490 ;; irrelevant to this platform. |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
491 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
|
492 (cond |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
493 ((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
|
494 (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
|
495 ((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
|
496 (eq system-type 'windows-nt)) |
102667 | 497 ((string-match "\\`ns-" (symbol-name symbol)) |
498 (featurep 'ns)) | |
63369
fe5c9ccf867c
(all): Don't complain about missing GTK-related variables,
Eli Zaretskii <eliz@gnu.org>
parents:
60096
diff
changeset
|
499 ((string-match "\\`x-.*gtk" (symbol-name symbol)) |
83366 | 500 (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
|
501 ((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
|
502 (fboundp 'x-create-frame)) |
65401
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
503 ((string-match "selection" (symbol-name symbol)) |
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
504 (fboundp 'x-selection-exists-p)) |
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
505 ((string-match "fringe" (symbol-name symbol)) |
27b65d33884f
(all): Don't complain about fringe-related
Eli Zaretskii <eliz@gnu.org>
parents:
65043
diff
changeset
|
506 (fboundp 'define-fringe-bitmap)) |
106187
b5eb529d2739
* cus-start.el (all): Add native condition for font-use-system-font.
Jan Djärv <jan.h.d@swipnet.se>
parents:
106097
diff
changeset
|
507 ((equal "font-use-system-font" (symbol-name symbol)) |
b5eb529d2739
* cus-start.el (all): Add native condition for font-use-system-font.
Jan Djärv <jan.h.d@swipnet.se>
parents:
106097
diff
changeset
|
508 (featurep 'system-font-setting)) |
108300
9fb2b015a2b4
cus-start.el (all): Add native condition for tool-bar-* symbols.
Eli Zaretskii <eliz@gnu.org>
parents:
108024
diff
changeset
|
509 ;; Conditioned on x-create-frame, because that's |
9fb2b015a2b4
cus-start.el (all): Add native condition for tool-bar-* symbols.
Eli Zaretskii <eliz@gnu.org>
parents:
108024
diff
changeset
|
510 ;; the condition for loadup.el to preload tool-bar.el. |
9fb2b015a2b4
cus-start.el (all): Add native condition for tool-bar-* symbols.
Eli Zaretskii <eliz@gnu.org>
parents:
108024
diff
changeset
|
511 ((string-match "tool-bar-" (symbol-name symbol)) |
9fb2b015a2b4
cus-start.el (all): Add native condition for tool-bar-* symbols.
Eli Zaretskii <eliz@gnu.org>
parents:
108024
diff
changeset
|
512 (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
|
513 (t t)))) |
17416 | 514 (if (not (boundp symbol)) |
515 ;; 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
|
516 (and native-p |
e4039c35f2f8
Don't warn about dos-* variables unless on MS-DOS,
Eli Zaretskii <eliz@gnu.org>
parents:
23863
diff
changeset
|
517 (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
|
518 ;; 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
|
519 (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
|
520 (put symbol 'standard-value (list standard))) |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
521 ;; We need these properties independent of whether cus-start is loaded. |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
522 (if (setq prop (memq :safe rest)) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
523 (put symbol 'safe-local-variable (cadr prop))) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
524 (if (setq prop (memq :risky rest)) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
525 (put symbol 'risky-local-variable (cadr prop))) |
111239
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
526 (if (setq prop (memq :set rest)) |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
527 (put symbol 'custom-set (cadr prop))) |
111222
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
528 ;; Note this is the _only_ initialize property we handle. |
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
529 (if (eq (cadr (memq :initialize rest)) 'custom-initialize-delay) |
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
530 (push symbol custom-delayed-init-variables)) |
111239
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
531 ;; If this is NOT while dumping Emacs, set up the rest of the |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
532 ;; customization info. This is the stuff that is not needed |
eacd26d376c3
Fix bug#7306; customization of minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111223
diff
changeset
|
533 ;; until someone does M-x customize etc. |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
534 (unless purify-flag |
111222
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
535 ;; Add it to the right group(s). |
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
536 (if (listp group) |
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
537 (dolist (g group) |
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
538 (custom-add-to-group g symbol 'custom-variable)) |
cdad894f9ed0
Remove duplicate Lisp definitions of define-minor-mode variables defined in C.
Glenn Morris <rgm@gnu.org>
parents:
111130
diff
changeset
|
539 (custom-add-to-group group symbol 'custom-variable)) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
540 ;; 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
|
541 (put symbol 'custom-type type) |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
542 (if version (put symbol 'custom-version version)) |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
543 (while rest |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
544 (setq prop (car rest) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
545 propval (cadr rest) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
546 rest (nthcdr 2 rest)) |
111266
8da6c861bf9f
Fix bug#7299; default value of tool-bar-mode in without-x builds.
Glenn Morris <rgm@gnu.org>
parents:
111239
diff
changeset
|
547 (cond ((memq prop '(:standard :risky :safe :set))) ; handled above |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
548 ((eq prop :tag) |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
549 (put symbol 'custom-tag propval)))))))) |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
550 |
33922 | 551 (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
|
552 (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
|
553 'custom-variable) |
33922 | 554 |
111130
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
555 ;; Record cus-start as loaded if we have set up all the info that we can. |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
556 ;; Don't record it as loaded if we have only set up the standard values |
7be880404309
Avoid redefining some C defcustoms.
Glenn Morris <rgm@gnu.org>
parents:
110931
diff
changeset
|
557 ;; and safe/risky properties. |
18052
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
558 (unless purify-flag |
64a265eaa6d7
Arrange to load it once during dumping,
Richard M. Stallman <rms@gnu.org>
parents:
17948
diff
changeset
|
559 (provide 'cus-start)) |
17416 | 560 |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
35966
diff
changeset
|
561 ;;; cus-start.el ends here |