aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuri Linkov2006-05-25 21:20:19 +0000
committerJuri Linkov2006-05-25 21:20:19 +0000
commitdafbe726b89a36010f3f24bb1efe4ace0a5f7f0f (patch)
tree3ebfafb8a4b09bea5a9411474e8c240b1cd96ec5 /src
parentb35cd215140b3ebf63ef228dae501fb18ddd80cd (diff)
downloademacs-dafbe726b89a36010f3f24bb1efe4ace0a5f7f0f.tar.gz
emacs-dafbe726b89a36010f3f24bb1efe4ace0a5f7f0f.zip
(mode-line-format): Fix docstring.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index f53f67ca2c2..722b9460a27 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5440,10 +5440,11 @@ A string is printed verbatim in the mode line except for %-constructs:
5440 %p -- print percent of buffer above top of window, or Top, Bot or All. 5440 %p -- print percent of buffer above top of window, or Top, Bot or All.
5441 %P -- print percent of buffer above bottom of window, perhaps plus Top, 5441 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5442 or print Bottom or All. 5442 or print Bottom or All.
5443 %m -- print the mode name.
5444 %n -- print Narrow if appropriate. 5443 %n -- print Narrow if appropriate.
5444 %t -- visited file is text or binary (if OS supports this distinction).
5445 %z -- print mnemonics of buffer, terminal, and keyboard coding systems. 5445 %z -- print mnemonics of buffer, terminal, and keyboard coding systems.
5446 %Z -- like %z, but including the end-of-line format. 5446 %Z -- like %z, but including the end-of-line format.
5447 %e -- print error message about full memory.
5447 %[ -- print one [ for each recursive editing level. %] similar. 5448 %[ -- print one [ for each recursive editing level. %] similar.
5448 %% -- print %. %- -- print infinitely many dashes. 5449 %% -- print %. %- -- print infinitely many dashes.
5449Decimal digits after the % specify field width to which to pad. */); 5450Decimal digits after the % specify field width to which to pad. */);