Mercurial > emacs
annotate lispref/locals.texi @ 74891:181210a9cef5
(fancy-splash-last-input-event): New variable.
(fancy-splash-special-event-action): New function.
(fancy-splash-screens): Temporarily bind special events to it.
Execute command for saved special event before exiting from
recursive editing.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Mon, 25 Dec 2006 08:18:09 +0000 |
parents | df35f095b799 |
children | 6d19c76d81c5 138ce2701550 |
rev | line source |
---|---|
7085 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
64889
e836425ee789
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64875
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1999, 2002, 2003, 2004, |
68648
067115a6e738
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65369
diff
changeset
|
4 @c 2005, 2006 Free Software Foundation, Inc. |
7085 | 5 @c See the file elisp.texi for copying conditions. |
6 @setfilename ../info/locals | |
7 @node Standard Buffer-Local Variables, Standard Keymaps, Standard Errors, Top | |
8 @appendix Buffer-Local Variables | |
9 @c The title "Standard Buffer-Local Variables" is too long for | |
10 @c smallbook. --rjc 30mar92 | |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
11 @cindex buffer-local variables, general-purpose |
7085 | 12 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
13 The table below lists the general-purpose Emacs variables that |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
14 automatically become buffer-local in each buffer. Most become |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
15 buffer-local only when set; a few of them are always local in every |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
16 buffer. Many Lisp packages define such variables for their internal |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
17 use, but we don't try to list them all here. |
7085 | 18 |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
19 Each minor modes defines a buffer-local variable named |
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
20 @samp{@var{modename}-mode}. @xref{Minor Mode Conventions}. Minor |
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
21 mode variables will not be listed here. |
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
22 |
7085 | 23 @table @code |
24 @item auto-fill-function | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
25 @xref{Auto Filling}. |
7085 | 26 |
56983
1b918ff286e6
(Standard Buffer-Local Variables): Add `buffer-auto-save-file-format'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55415
diff
changeset
|
27 @item buffer-auto-save-file-format |
1b918ff286e6
(Standard Buffer-Local Variables): Add `buffer-auto-save-file-format'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55415
diff
changeset
|
28 @xref{Format Conversion}. |
1b918ff286e6
(Standard Buffer-Local Variables): Add `buffer-auto-save-file-format'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55415
diff
changeset
|
29 |
7085 | 30 @item buffer-auto-save-file-name |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
31 @xref{Auto-Saving}. |
7085 | 32 |
33 @item buffer-backed-up | |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
34 @xref{Making Backups}. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
35 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
36 @item buffer-display-count |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
37 @xref{Buffers and Windows}. |
7085 | 38 |
39 @item buffer-display-table | |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
40 @xref{Active Display Table}. |
7085 | 41 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
42 @item buffer-display-time |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
43 @xref{Buffers and Windows}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
44 |
26446 | 45 @item buffer-file-coding-system |
46 @xref{Encoding and I/O}. | |
47 | |
12098 | 48 @item buffer-file-format |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
49 @xref{Format Conversion}. |
12098 | 50 |
7085 | 51 @item buffer-file-name |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
52 @xref{Buffer File Name}. |
7085 | 53 |
54 @item buffer-file-number | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
55 @xref{Buffer File Name}. |
7085 | 56 |
57 @item buffer-file-truename | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
58 @xref{Buffer File Name}. |
7085 | 59 |
60 @item buffer-file-type | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
61 @xref{MS-DOS File Types}. |
7085 | 62 |
12098 | 63 @item buffer-invisibility-spec |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
64 @xref{Invisible Text}. |
12098 | 65 |
7085 | 66 @item buffer-offer-save |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
67 @xref{Killing Buffers}. |
7085 | 68 |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
69 @item buffer-save-without-query |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
70 @xref{Killing Buffers}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
71 |
7085 | 72 @item buffer-read-only |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
73 @xref{Read Only Buffers}. |
7085 | 74 |
75 @item buffer-saved-size | |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
76 @xref{Auto-Saving}. |
7085 | 77 |
78 @item buffer-undo-list | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
79 @xref{Undo}. |
7085 | 80 |
9400
c7f291610c8d
Added entry for cache-long-line-scans
Jim Blandy <jimb@redhat.com>
parents:
7600
diff
changeset
|
81 @item cache-long-line-scans |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
82 @xref{Truncation}. |
9400
c7f291610c8d
Added entry for cache-long-line-scans
Jim Blandy <jimb@redhat.com>
parents:
7600
diff
changeset
|
83 |
7085 | 84 @item case-fold-search |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
85 @xref{Searching and Case}. |
7085 | 86 |
87 @item ctl-arrow | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
88 @xref{Usual Display}. |
7085 | 89 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
90 @item cursor-type |
64875
4daccd802437
(Standard Buffer-Local Variables): Fix xref.
Richard M. Stallman <rms@gnu.org>
parents:
58885
diff
changeset
|
91 @xref{Cursor Parameters}. |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
92 |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
93 @item cursor-in-non-selected-windows |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
94 @xref{Basic Windows}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
95 |
7085 | 96 @item comment-column |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
97 @xref{Comments,,, emacs, The GNU Emacs Manual}. |
7085 | 98 |
99 @item default-directory | |
54062
b03c387f73cf
(Standard Buffer-Local Variables): Fix xref.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
100 @xref{File Name Expansion}. |
7085 | 101 |
102 @item defun-prompt-regexp | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
103 @xref{List Motion}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
104 |
55415 | 105 @item desktop-save-buffer |
106 @xref{Desktop Save Mode}. | |
107 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
108 @ignore |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
109 @item direction-reversed |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
110 Does not work yet. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
111 @end ignore |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
112 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
113 @item enable-multibyte-characters |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
114 @ref{Text Representations}. |
7085 | 115 |
116 @item fill-column | |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
117 @xref{Margins}. |
7085 | 118 |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
119 @item fill-prefix |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
120 @xref{Margins}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
121 |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
122 @item font-lock-defaults |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
123 @xref{Font Lock Basics}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
124 |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
125 @item fringe-cursor-alist |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
126 @xref{Fringe Cursors}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
127 |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
128 @item fringe-indicator-alist |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
129 @xref{Fringe Indicators}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
130 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
131 @item fringes-outside-margins |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
132 @xref{Fringes}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
133 |
7085 | 134 @item goal-column |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
135 @xref{Moving Point,,, emacs, The GNU Emacs Manual}. |
7085 | 136 |
26446 | 137 @item header-line-format |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
138 @xref{Header Lines}. |
26446 | 139 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
140 @item indicate-buffer-boundaries |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
141 @xref{Usual Display}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
142 |
26446 | 143 @item indicate-empty-lines |
144 @xref{Usual Display}. | |
145 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
146 @item left-fringe-width |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
147 @xref{Fringe Size/Pos}. |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
148 |
7085 | 149 @item left-margin |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
150 @xref{Margins}. |
7085 | 151 |
26446 | 152 @item left-margin-width |
153 @xref{Display Margins}. | |
154 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
155 @item line-spacing |
58885
da652d3d778e
(Standard Buffer-Local Variables): Fix xref for
Kim F. Storm <storm@cua.dk>
parents:
58869
diff
changeset
|
156 @xref{Line Height}. |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
157 |
7085 | 158 @item local-abbrev-table |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
159 @xref{Standard Abbrev Tables}. |
7085 | 160 |
161 @item major-mode | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
162 @xref{Mode Help}. |
7085 | 163 |
164 @item mark-active | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
165 @xref{The Mark}. |
7085 | 166 |
167 @item mark-ring | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
168 @xref{The Mark}. |
7085 | 169 |
170 @item mode-line-buffer-identification | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
171 @xref{Mode Line Variables}. |
7085 | 172 |
173 @item mode-line-format | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
174 @xref{Mode Line Data}. |
7085 | 175 |
176 @item mode-line-modified | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
177 @xref{Mode Line Variables}. |
7085 | 178 |
179 @item mode-line-process | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
180 @xref{Mode Line Variables}. |
7085 | 181 |
182 @item mode-name | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
183 @xref{Mode Line Variables}. |
7085 | 184 |
12098 | 185 @item point-before-scroll |
26696
ef5e7bbe6f19
Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents:
26446
diff
changeset
|
186 Used for communication between mouse commands and scroll-bar commands. |
12098 | 187 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
188 @item right-fringe-width |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
189 @xref{Fringe Size/Pos}. |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
190 |
26446 | 191 @item right-margin-width |
192 @xref{Display Margins}. | |
193 | |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
194 @item save-buffer-coding-system |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
195 @xref{Encoding and I/O}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
196 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
197 @item scroll-bar-width |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
198 @xref{Scroll Bars}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
199 |
26446 | 200 @item scroll-down-aggressively |
201 @xref{Textual Scrolling}. | |
202 | |
203 @item scroll-up-aggressively | |
204 @xref{Textual Scrolling}. | |
205 | |
7085 | 206 @item selective-display |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
207 @xref{Selective Display}. |
7085 | 208 |
209 @item selective-display-ellipses | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
210 @xref{Selective Display}. |
7085 | 211 |
212 @item tab-width | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
213 @xref{Usual Display}. |
7085 | 214 |
215 @item truncate-lines | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
216 @xref{Truncation}. |
7085 | 217 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
218 @item vertical-scroll-bar |
58885
da652d3d778e
(Standard Buffer-Local Variables): Fix xref for
Kim F. Storm <storm@cua.dk>
parents:
58869
diff
changeset
|
219 @xref{Scroll Bars}. |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
220 |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
221 @item window-size-fixed |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
222 @xref{Resizing Windows}. |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
223 |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
224 @item write-contents-functions |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
225 @xref{Saving Buffers}. |
7085 | 226 @end table |
52401 | 227 |
71539
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
228 |
22916db86ba2
(Standard Buffer-Local Variables): Update the list of variables.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
229 @ignore |
52401 | 230 arch-tag: 6baae835-b667-4447-91e2-9829ae1cf543 |
231 @end ignore |