summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2001-11-01 19:32:39 +0000
committerRichard M. Stallman <rms@gnu.org>2001-11-01 19:32:39 +0000
commit6a0d92d35debd0244c413bc5b2787a436a2c9023 (patch)
tree5b56cbdfe373e16921651f6f4371a2d5898149c4
parent72eb5fc741e1b76818f4f405a6b0c1d087a6287c (diff)
downloademacs-6a0d92d35debd0244c413bc5b2787a436a2c9023.tar.gz
(buffer-menu): Doc fix.
(buffer-menu-other-window): Doc fix. (list-buffers, list-buffers-noselect): Doc fix.
-rw-r--r--lisp/buff-menu.el21
1 files changed, 15 insertions, 6 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el
index a5c43d1c60f..ea8a4ba914a 100644
--- a/lisp/buff-menu.el
+++ b/lisp/buff-menu.el
@@ -177,7 +177,17 @@ Letters do not insert themselves; instead, they are commands.
"Make a menu of buffers so you can save, delete or select them.
With argument, show only buffers that are visiting files.
Type ? after invocation to get help on commands available.
-Type q immediately to make the buffer menu go away."
+Type q to remove the buffer menu from the display.
+
+The first column shows `>' for a buffer you have
+marked to be displayed, `D' for one you have marked for
+deletion, and `.' for the current buffer.
+
+The M column has a `*' if it is modified,
+or `S' if you have marked it for saving.
+The R column has a `%' if the buffer is read-only.
+After this come the buffer name, its size in characters,
+its major mode, and the visited file name (if any)."
(interactive "P")
;;; (setq Buffer-menu-window-config (current-window-configuration))
(switch-to-buffer (list-buffers-noselect arg))
@@ -189,7 +199,8 @@ Type q immediately to make the buffer menu go away."
With the buffer list buffer, you can save, delete or select the buffers.
With argument, show only buffers that are visiting files.
Type ? after invocation to get help on commands available.
-Type q immediately to make the buffer menu go away."
+Type q to remove the buffer menu from the display.
+For more information, see the function `buffer-menu'."
(interactive "P")
;;; (setq Buffer-menu-window-config (current-window-configuration))
(switch-to-buffer-other-window (list-buffers-noselect arg))
@@ -469,8 +480,7 @@ The list is displayed in a buffer named `*Buffer List*'.
Note that buffers with names starting with spaces are omitted.
Non-null optional arg FILES-ONLY means mention only file buffers.
-The M column contains a * for buffers that are modified.
-The R column contains a % for buffers that are read-only."
+For more information, see the function `buffer-menu'."
(interactive "P")
(display-buffer (list-buffers-noselect files-only)))
@@ -480,8 +490,7 @@ The buffer is named `*Buffer List*'.
Note that buffers with names starting with spaces are omitted.
Non-null optional arg FILES-ONLY means mention only file buffers.
-The M column contains a * for buffers that are modified.
-The R column contains a % for buffers that are read-only."
+For more information, see the function `buffer-menu'."
(let ((old-buffer (current-buffer))
(standard-output standard-output)
desired-point)