Mercurial > emacs
annotate lispref/locals.texi @ 61554:217c5fe404c0
(x_set_name, x_set_title) [!TARGET_API_MAC_CARBON]: Use ENCODE_SYSTEM
to encode title bar string.
(x_create_tip_frame): Apply 2005-03-18 change for xfns.c.
(Fx_file_dialog) [TARGET_API_MAC_CARBON && !MAC_OSX]: Use
CFStringGetSystemEncoding to get system default string encoding.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Thu, 14 Apr 2005 09:25:41 +0000 |
parents | da652d3d778e |
children | 4daccd802437 fb79180b618d |
rev | line source |
---|---|
7085 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45979
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1999 Free Software Foundation, Inc. |
7085 | 4 @c See the file elisp.texi for copying conditions. |
5 @setfilename ../info/locals | |
6 @node Standard Buffer-Local Variables, Standard Keymaps, Standard Errors, Top | |
7 @appendix Buffer-Local Variables | |
8 @c The title "Standard Buffer-Local Variables" is too long for | |
9 @c smallbook. --rjc 30mar92 | |
10 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
11 The table below lists the general-purpose Emacs variables that |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
12 automatically become buffer-local in each buffer. Most become |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
13 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
|
14 buffer. Many Lisp packages define such variables for their internal |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
15 use, but we don't try to list them all here. |
7085 | 16 |
17 @table @code | |
18 @item abbrev-mode | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
19 @xref{Abbrevs}. |
7085 | 20 |
21 @item auto-fill-function | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
22 @xref{Auto Filling}. |
7085 | 23 |
56983
1b918ff286e6
(Standard Buffer-Local Variables): Add `buffer-auto-save-file-format'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55415
diff
changeset
|
24 @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
|
25 @xref{Format Conversion}. |
1b918ff286e6
(Standard Buffer-Local Variables): Add `buffer-auto-save-file-format'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
55415
diff
changeset
|
26 |
7085 | 27 @item buffer-auto-save-file-name |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
28 @xref{Auto-Saving}. |
7085 | 29 |
30 @item buffer-backed-up | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
31 @xref{Backup Files}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
32 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
33 @item buffer-display-count |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
34 @xref{Displaying Buffers}. |
7085 | 35 |
36 @item buffer-display-table | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
37 @xref{Display Tables}. |
7085 | 38 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
39 @item buffer-display-time |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
40 @xref{Buffers and Windows}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
41 |
26446 | 42 @item buffer-file-coding-system |
43 @xref{Encoding and I/O}. | |
44 | |
12098 | 45 @item buffer-file-format |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
46 @xref{Format Conversion}. |
12098 | 47 |
7085 | 48 @item buffer-file-name |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
49 @xref{Buffer File Name}. |
7085 | 50 |
51 @item buffer-file-number | |
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-truename | |
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-type | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
58 @xref{MS-DOS File Types}. |
7085 | 59 |
12098 | 60 @item buffer-invisibility-spec |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
61 @xref{Invisible Text}. |
12098 | 62 |
7085 | 63 @item buffer-offer-save |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
64 @xref{Saving Buffers}. |
7085 | 65 |
66 @item buffer-read-only | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
67 @xref{Read Only Buffers}. |
7085 | 68 |
69 @item buffer-saved-size | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
70 @xref{Point}. |
7085 | 71 |
72 @item buffer-undo-list | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
73 @xref{Undo}. |
7085 | 74 |
9400
c7f291610c8d
Added entry for cache-long-line-scans
Jim Blandy <jimb@redhat.com>
parents:
7600
diff
changeset
|
75 @item cache-long-line-scans |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
76 @xref{Text Lines}. |
9400
c7f291610c8d
Added entry for cache-long-line-scans
Jim Blandy <jimb@redhat.com>
parents:
7600
diff
changeset
|
77 |
7085 | 78 @item case-fold-search |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
79 @xref{Searching and Case}. |
7085 | 80 |
81 @item ctl-arrow | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
82 @xref{Usual Display}. |
7085 | 83 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
84 @item cursor-type |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
85 @xref{Window Frame Parameters}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
86 |
7085 | 87 @item comment-column |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
88 @xref{Comments,,, emacs, The GNU Emacs Manual}. |
7085 | 89 |
90 @item default-directory | |
54062
b03c387f73cf
(Standard Buffer-Local Variables): Fix xref.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
91 @xref{File Name Expansion}. |
7085 | 92 |
93 @item defun-prompt-regexp | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
94 @xref{List Motion}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
95 |
55415 | 96 @item desktop-save-buffer |
97 @xref{Desktop Save Mode}. | |
98 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
99 @ignore |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
100 @item direction-reversed |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
101 Does not work yet. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
102 @end ignore |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
103 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
104 @item enable-multibyte-characters |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
105 @ref{Non-ASCII Characters}. |
7085 | 106 |
107 @item fill-column | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
108 @xref{Auto Filling}. |
7085 | 109 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
110 @item fringes-outside-margins |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
111 @xref{Fringes}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
112 |
7085 | 113 @item goal-column |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
114 @xref{Moving Point,,, emacs, The GNU Emacs Manual}. |
7085 | 115 |
26446 | 116 @item header-line-format |
117 @xref{Mode Line Data}. | |
118 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
119 @item indicate-buffer-boundaries |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
120 @xref{Usual Display}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
121 |
26446 | 122 @item indicate-empty-lines |
123 @xref{Usual Display}. | |
124 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
125 @item left-fringe-width |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
126 @xref{Fringes}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
127 |
7085 | 128 @item left-margin |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
129 @xref{Indentation}. |
7085 | 130 |
26446 | 131 @item left-margin-width |
132 @xref{Display Margins}. | |
133 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
134 @item line-spacing |
58885
da652d3d778e
(Standard Buffer-Local Variables): Fix xref for
Kim F. Storm <storm@cua.dk>
parents:
58869
diff
changeset
|
135 @xref{Line Height}. |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
136 |
7085 | 137 @item local-abbrev-table |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
138 @xref{Abbrevs}. |
7085 | 139 |
140 @item major-mode | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
141 @xref{Mode Help}. |
7085 | 142 |
143 @item mark-active | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
144 @xref{The Mark}. |
7085 | 145 |
146 @item mark-ring | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
147 @xref{The Mark}. |
7085 | 148 |
149 @item mode-line-buffer-identification | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
150 @xref{Mode Line Variables}. |
7085 | 151 |
152 @item mode-line-format | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
153 @xref{Mode Line Data}. |
7085 | 154 |
155 @item mode-line-modified | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
156 @xref{Mode Line Variables}. |
7085 | 157 |
158 @item mode-line-process | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
159 @xref{Mode Line Variables}. |
7085 | 160 |
161 @item mode-name | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
162 @xref{Mode Line Variables}. |
7085 | 163 |
164 @item overwrite-mode | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
165 @xref{Insertion}. |
7085 | 166 |
12098 | 167 @item point-before-scroll |
26696
ef5e7bbe6f19
Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents:
26446
diff
changeset
|
168 Used for communication between mouse commands and scroll-bar commands. |
12098 | 169 |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
170 @item right-fringe-width |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
171 @xref{Fringes}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
172 |
26446 | 173 @item right-margin-width |
174 @xref{Display Margins}. | |
175 | |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
176 @item scroll-bar-width |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
177 @xref{Scroll Bars}. |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
178 |
26446 | 179 @item scroll-down-aggressively |
180 @xref{Textual Scrolling}. | |
181 | |
182 @item scroll-up-aggressively | |
183 @xref{Textual Scrolling}. | |
184 | |
7085 | 185 @item selective-display |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
186 @xref{Selective Display}. |
7085 | 187 |
188 @item selective-display-ellipses | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
189 @xref{Selective Display}. |
7085 | 190 |
191 @item tab-width | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
192 @xref{Usual Display}. |
7085 | 193 |
194 @item truncate-lines | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
195 @xref{Truncation}. |
7085 | 196 |
197 @item vc-mode | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
198 @xref{Mode Line Variables}. |
58498
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
199 |
5ba4d96600d3
(Standard Buffer-Local Variables): Add many vars.
Richard M. Stallman <rms@gnu.org>
parents:
56983
diff
changeset
|
200 @item vertical-scroll-bar |
58885
da652d3d778e
(Standard Buffer-Local Variables): Fix xref for
Kim F. Storm <storm@cua.dk>
parents:
58869
diff
changeset
|
201 @xref{Scroll Bars}. |
7085 | 202 @end table |
52401 | 203 |
204 @ignore | |
205 arch-tag: 6baae835-b667-4447-91e2-9829ae1cf543 | |
206 @end ignore |