# HG changeset patch # User Juanma Barranquero # Date 1119263209 0 # Node ID 153f4469d91a0981534a94ba2e3bd33061a34e3f # Parent e477f7119e3c6baa1807cedf4a2d9049c10f9e97 (next-error-buffer-p, next-error-find-buffer): Fix typos in docstrings. (kill-whole-line): Doc fix. (clone-indirect-buffer): Improve argument/docstring consistency. diff -r e477f7119e3c -r 153f4469d91a lisp/simple.el --- a/lisp/simple.el Mon Jun 20 03:22:38 2005 +0000 +++ b/lisp/simple.el Mon Jun 20 10:26:49 2005 +0000 @@ -148,7 +148,7 @@ in question is treated as usable. The function EXTRA-TEST-EXCLUSIVE, if non-nil is called in each buffer -that would normally be considered usable. if it returns nil, +that would normally be considered usable. If it returns nil, that buffer is rejected." (and (buffer-name buffer) ;First make sure it's live. (not (and avoid-current (eq buffer (current-buffer)))) @@ -169,7 +169,7 @@ If AVOID-CURRENT is non-nil, treat the current buffer as an absolute last resort only. -The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffers +The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer that normally would not qualify. If it returns t, the buffer in question is treated as usable. @@ -2764,7 +2764,7 @@ "Kill current line. With prefix arg, kill that many lines starting from the current line. If arg is negative, kill backward. Also kill the preceding newline. -\(This is meant to make C-x z work well with negative arguments.\) +\(This is meant to make \\[repeat] work well with negative arguments.\) If arg is zero, kill current line but exclude the trailing newline." (interactive "p") (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp))) @@ -5116,7 +5116,7 @@ (defun clone-indirect-buffer (newname display-flag &optional norecord) "Create an indirect buffer that is a twin copy of the current buffer. -Give the indirect buffer name NEWNAME. Interactively, read NEW-NAME +Give the indirect buffer name NEWNAME. Interactively, read NEWNAME from the minibuffer when invoked with a prefix arg. If NEWNAME is nil or if not called with a prefix arg, NEWNAME defaults to the current buffer's name. The name is modified by adding a `' suffix to it