aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorKaroly Lorentey2006-06-12 07:27:12 +0000
committerKaroly Lorentey2006-06-12 07:27:12 +0000
commit476e9367ec1f440aa23904b7bc482ea4a3b8041c (patch)
tree4f7f5a5e9a6668f908834bb6e216c8fa3727d4b3 /src/buffer.c
parenta13f8f50d4cc544d3bbfa78568e82ce09e68bded (diff)
parent6b519504c3297595101628e823e72c91e562ab45 (diff)
downloademacs-476e9367ec1f440aa23904b7bc482ea4a3b8041c.tar.gz
emacs-476e9367ec1f440aa23904b7bc482ea4a3b8041c.zip
Merged from emacs@sv.gnu.org.
Patches applied: * emacs@sv.gnu.org/emacs--devo--0--patch-294 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-295 Merge from gnus--rel--5.10 * emacs@sv.gnu.org/emacs--devo--0--patch-296 Update from CVS: admin/FOR-RELEASE: Update refcard section. * emacs@sv.gnu.org/emacs--devo--0--patch-297 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-298 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-299 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-300 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-301 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-302 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-303 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-304 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-103 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-104 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-570
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 3dff44a6b86..73db9d21419 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5470,10 +5470,11 @@ A string is printed verbatim in the mode line except for %-constructs:
5470 %p -- print percent of buffer above top of window, or Top, Bot or All. 5470 %p -- print percent of buffer above top of window, or Top, Bot or All.
5471 %P -- print percent of buffer above bottom of window, perhaps plus Top, 5471 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5472 or print Bottom or All. 5472 or print Bottom or All.
5473 %m -- print the mode name.
5474 %n -- print Narrow if appropriate. 5473 %n -- print Narrow if appropriate.
5474 %t -- visited file is text or binary (if OS supports this distinction).
5475 %z -- print mnemonics of buffer, terminal, and keyboard coding systems. 5475 %z -- print mnemonics of buffer, terminal, and keyboard coding systems.
5476 %Z -- like %z, but including the end-of-line format. 5476 %Z -- like %z, but including the end-of-line format.
5477 %e -- print error message about full memory.
5477 %[ -- print one [ for each recursive editing level. %] similar. 5478 %[ -- print one [ for each recursive editing level. %] similar.
5478 %% -- print %. %- -- print infinitely many dashes. 5479 %% -- print %. %- -- print infinitely many dashes.
5479Decimal digits after the % specify field width to which to pad. */); 5480Decimal digits after the % specify field width to which to pad. */);