summaryrefslogtreecommitdiff
path: root/lispref/text.texi
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2005-09-08 22:00:58 +0000
committerChong Yidong <cyd@stupidchicken.com>2005-09-08 22:00:58 +0000
commit475aab0deb5eb47377335137afd190ece9fcd92c (patch)
tree54726842f6e88b23e989787355a917a6d66e4553 /lispref/text.texi
parent9815ca3d25923c59711abf757c6371bc3548b318 (diff)
downloademacs-475aab0deb5eb47377335137afd190ece9fcd92c.tar.gz
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
* locals.texi (Standard Buffer-Local Variables): Don't include mode variables for minor modes. Fix xrefs for buffer-display-count, buffer-display-table, buffer-offer-save, buffer-saved-size, cache-long-line-scans, enable-multibyte-characters, fill-column, header-line-format, left-fringe-width, left-margin, and right-fringe-width. * hooks.texi (Standard Hooks): All hooks should conform to the standard naming convention now. Fix xref for `echo-area-clear-hook'. * display.texi (Usual Display): Note that indicate-empty-lines and tab-width are buffer-local. * files.texi (Saving Buffers): Add xref to `Killing Buffers'. * modes.texi (Mode Help): Note that major-mode is buffer-local. * nonascii.texi (Encoding and I/O): Note that buffer-file-coding-system is buffer-local. * positions.texi (List Motion): Note that defun-prompt-regexp is buffer-local. * text.texi (Auto Filling): Note that auto-fill-function is buffer-local. (Undo): Note that buffer-undo-list is buffer-local. * windows.texi (Buffers and Windows): Document buffer-display-count.
Diffstat (limited to 'lispref/text.texi')
-rw-r--r--lispref/text.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index 14a9dc9d5c6..1fa68fce917 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -1200,8 +1200,8 @@ text in the buffer automatically add elements to the front of the undo
list, which is in the variable @code{buffer-undo-list}.
@defvar buffer-undo-list
-This variable's value is the undo list of the current buffer.
-A value of @code{t} disables the recording of undo information.
+This buffer-local variable's value is the undo list of the current
+buffer. A value of @code{t} disables the recording of undo information.
@end defvar
Here are the kinds of elements an undo list can have:
@@ -1768,8 +1768,8 @@ justify existing text, see @ref{Filling}.
justification style to refill portions of the text. @xref{Margins}.
@defvar auto-fill-function
-The value of this variable should be a function (of no arguments) to be
-called after self-inserting a character from the table
+The value of this buffer-local variable should be a function (of no
+arguments) to be called after self-inserting a character from the table
@code{auto-fill-chars}. It may be @code{nil}, in which case nothing
special is done in that case.