aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2003-12-29 14:04:31 +0000
committerEli Zaretskii2003-12-29 14:04:31 +0000
commit243a3ae0807559210bb92e7ced8778c116da09a2 (patch)
treea673602b28b532f1a5882f0e831a43094557e1eb
parent74a47d1fba2e5b01db681f75e35f2f78af62fc7c (diff)
downloademacs-243a3ae0807559210bb92e7ced8778c116da09a2.tar.gz
emacs-243a3ae0807559210bb92e7ced8778c116da09a2.zip
(kill-some-buffers): Doc fix.
-rw-r--r--lisp/files.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 1dc6e5454df..ce4d67d33e4 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -3727,8 +3727,9 @@ This command is used in the special Dired buffer created by
3727 (kill-buffer buffer)))) 3727 (kill-buffer buffer))))
3728 3728
3729(defun kill-some-buffers (&optional list) 3729(defun kill-some-buffers (&optional list)
3730 "For each buffer in LIST, ask whether to kill it. 3730 "Kill some buffers. Asks the user whether to kill each one of them.
3731LIST defaults to all existing live buffers." 3731Non-interactively, if optional argument LIST is non-`nil', it
3732specifies the list of buffers to kill, asking for approval for each one."
3732 (interactive) 3733 (interactive)
3733 (if (null list) 3734 (if (null list)
3734 (setq list (buffer-list))) 3735 (setq list (buffer-list)))