aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index ff4a500c8b7..80dbd3318dc 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5486,8 +5486,11 @@ A string is printed verbatim in the mode line except for %-constructs:
5486 For a modified read-only buffer, %* gives % and %+ gives *. 5486 For a modified read-only buffer, %* gives % and %+ gives *.
5487 %s -- print process status. %l -- print the current line number. 5487 %s -- print process status. %l -- print the current line number.
5488 %c -- print the current column number (this makes editing slower). 5488 %c -- print the current column number (this makes editing slower).
5489 Columns are numbered starting from the left margin, and the
5490 leftmost column is displayed as zero.
5489 To make the column number update correctly in all cases, 5491 To make the column number update correctly in all cases,
5490 `column-number-mode' must be non-nil. 5492 `column-number-mode' must be non-nil.
5493 %C -- Like %c, but the leftmost column is displayed as one.
5491 %i -- print the size of the buffer. 5494 %i -- print the size of the buffer.
5492 %I -- like %i, but use k, M, G, etc., to abbreviate. 5495 %I -- like %i, but use k, M, G, etc., to abbreviate.
5493 %p -- print percent of buffer above top of window, or Top, Bot or All. 5496 %p -- print percent of buffer above top of window, or Top, Bot or All.
@@ -5629,7 +5632,9 @@ visual lines rather than logical lines. See the documentation of
5629 DEFVAR_PER_BUFFER ("default-directory", &BVAR (current_buffer, directory), 5632 DEFVAR_PER_BUFFER ("default-directory", &BVAR (current_buffer, directory),
5630 Qstringp, 5633 Qstringp,
5631 doc: /* Name of default directory of current buffer. 5634 doc: /* Name of default directory of current buffer.
5632To interactively change the default directory, use command `cd'. */); 5635It should be a directory name (as opposed to a directory file-name).
5636On GNU and Unix systems, directory names end in a slash `/'.
5637To interactively change the default directory, use command `cd'. */);
5633 5638
5634 DEFVAR_PER_BUFFER ("auto-fill-function", &BVAR (current_buffer, auto_fill_function), 5639 DEFVAR_PER_BUFFER ("auto-fill-function", &BVAR (current_buffer, auto_fill_function),
5635 Qnil, 5640 Qnil,