summaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-02 08:09:42 +0000
committerJim Blandy <jimb@redhat.com>1993-03-02 08:09:42 +0000
commitbec44fd6f657da0d5f25bd6875938cd059ca0b3c (patch)
treecb524a3f7a210acebf318702d78ddb603016efc7 /src/buffer.c
parent0a68e87bbd7abccb30f9c9c99df4d9e9829b470c (diff)
* buffer.c (buffer-undo-list): Doc fix.
* buffer.c (syms_of_buffer): Add the extra argument to the commented-out DEFVAR_PER_BUFFER for `mode-line-format', so make-docfile will find the docstring properly.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 6617ee989fe..a1e1c063f65 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1465,6 +1465,7 @@ This is the same as (default-value 'case-fold-search).");
/* This doc string is too long for cpp; cpp dies if it isn't in a comment.
But make-docfile finds it!
DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
+ Qnil,
"Template for displaying mode line for current buffer.\n\
Each buffer has its own value of this variable.\n\
Value may be a string, a symbol or a list or cons cell.\n\
@@ -1687,11 +1688,14 @@ An entry (nil PROP VAL BEG . END) indicates that a text property\n\
was modified between BEG and END. PROP is the property name,\n\
and VAL is the old value.\n\
\n\
+An entry of the form POSITION indicates that point was at the buffer\n\
+location given by the integer. Undoing an entry of this form places\n\
+point at POSITION.\n\
+\n\
nil marks undo boundaries. The undo command treats the changes\n\
between two undo boundaries as a single step to be undone.\n\
\n\
-If the value of the variable is t, undo information is not recorded.\n\
-");
+If the value of the variable is t, undo information is not recorded.");
defsubr (&Sbuffer_list);
defsubr (&Sget_buffer);