aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2003-09-08 07:52:23 +0000
committerLute Kamstra2003-09-08 07:52:23 +0000
commit77d31fb4c44cfffa23983d1f3335ed17e987206d (patch)
tree5fad7d442482a8623317a9571c07622581be4699
parent525b8b09830b549e6c1b89729a915f64934f77bf (diff)
downloademacs-77d31fb4c44cfffa23983d1f3335ed17e987206d.tar.gz
emacs-77d31fb4c44cfffa23983d1f3335ed17e987206d.zip
(syms_of_buffer): Document `%i' and `%I' constructs for
`mode-line-format'.
-rw-r--r--src/buffer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index de466de485a..e41d114eaa3 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5372,6 +5372,8 @@ A string is printed verbatim in the mode line except for %-constructs:
5372 %c -- print the current column number (this makes editing slower). 5372 %c -- print the current column number (this makes editing slower).
5373 To make the column number update correctly in all cases, 5373 To make the column number update correctly in all cases,
5374 `column-number-mode' must be non-nil. 5374 `column-number-mode' must be non-nil.
5375 %i -- print the size of the buffer.
5376 %I -- like %i, but use k, M, G, etc., to abbreviate.
5375 %p -- print percent of buffer above top of window, or Top, Bot or All. 5377 %p -- print percent of buffer above top of window, or Top, Bot or All.
5376 %P -- print percent of buffer above bottom of window, perhaps plus Top, 5378 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5377 or print Bottom or All. 5379 or print Bottom or All.