From 01ba96624b41bc15d40ccb0a7095d081f0ee0e4d Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 20 Jun 2005 10:29:02 +0000 Subject: [PATCH] (next-error-buffer-p, next-error-find-buffer): Fix typos in docstrings. (kill-whole-line): Doc fix. (clone-indirect-buffer): Improve argument/docstring consistency. --- lisp/ChangeLog | 8 +++++++- lisp/simple.el | 8 ++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 89f6e6d27ef..74bbbf70ccc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2005-06-20 Juanma Barranquero + + * simple.el (kill-whole-line): Doc fix. + (next-error-buffer-p, next-error-find-buffer) + (clone-indirect-buffer): Fix typos in docstrings. + 2005-06-19 Michael Albinus * net/tramp-ftp.el (top): @@ -10,7 +16,7 @@ 2005-06-19 Nick Roberts - * tooltip.el: (tooltip-use-echo-area): Don't make it obsolete. + * tooltip.el (tooltip-use-echo-area): Don't make it obsolete. 2005-06-18 Juri Linkov diff --git a/lisp/simple.el b/lisp/simple.el index 234b30f92bf..1a74e61ca05 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -148,7 +148,7 @@ that normally would not qualify. If it returns t, the buffer 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 @@ that buffer is rejected." 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 @@ even beep.)" "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 @@ after it has been set up properly in other respects." (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 -- 2.39.2