aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-20 10:29:02 +0000
committerJuanma Barranquero2005-06-20 10:29:02 +0000
commit01ba96624b41bc15d40ccb0a7095d081f0ee0e4d (patch)
tree4a8beb2e5553a843d58ec997a8b4efa3caee8de3
parent059cbcd597e955cc44ecddfd8de4d45cbe3e5720 (diff)
downloademacs-01ba96624b41bc15d40ccb0a7095d081f0ee0e4d.tar.gz
emacs-01ba96624b41bc15d40ccb0a7095d081f0ee0e4d.zip
(next-error-buffer-p, next-error-find-buffer): Fix typos in docstrings.
(kill-whole-line): Doc fix. (clone-indirect-buffer): Improve argument/docstring consistency.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/simple.el8
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 @@
12005-06-20 Juanma Barranquero <lekktu@gmail.com>
2
3 * simple.el (kill-whole-line): Doc fix.
4 (next-error-buffer-p, next-error-find-buffer)
5 (clone-indirect-buffer): Fix typos in docstrings.
6
12005-06-19 Michael Albinus <michael.albinus@gmx.de> 72005-06-19 Michael Albinus <michael.albinus@gmx.de>
2 8
3 * net/tramp-ftp.el (top): 9 * net/tramp-ftp.el (top):
@@ -10,7 +16,7 @@
10 16
112005-06-19 Nick Roberts <nickrob@snap.net.nz> 172005-06-19 Nick Roberts <nickrob@snap.net.nz>
12 18
13 * tooltip.el: (tooltip-use-echo-area): Don't make it obsolete. 19 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
14 20
152005-06-18 Juri Linkov <juri@jurta.org> 212005-06-18 Juri Linkov <juri@jurta.org>
16 22
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
148in question is treated as usable. 148in question is treated as usable.
149 149
150The function EXTRA-TEST-EXCLUSIVE, if non-nil is called in each buffer 150The function EXTRA-TEST-EXCLUSIVE, if non-nil is called in each buffer
151that would normally be considered usable. if it returns nil, 151that would normally be considered usable. If it returns nil,
152that buffer is rejected." 152that buffer is rejected."
153 (and (buffer-name buffer) ;First make sure it's live. 153 (and (buffer-name buffer) ;First make sure it's live.
154 (not (and avoid-current (eq buffer (current-buffer)))) 154 (not (and avoid-current (eq buffer (current-buffer))))
@@ -169,7 +169,7 @@ that buffer is rejected."
169If AVOID-CURRENT is non-nil, treat the current buffer 169If AVOID-CURRENT is non-nil, treat the current buffer
170as an absolute last resort only. 170as an absolute last resort only.
171 171
172The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffers 172The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer
173that normally would not qualify. If it returns t, the buffer 173that normally would not qualify. If it returns t, the buffer
174in question is treated as usable. 174in question is treated as usable.
175 175
@@ -2764,7 +2764,7 @@ even beep.)"
2764 "Kill current line. 2764 "Kill current line.
2765With prefix arg, kill that many lines starting from the current line. 2765With prefix arg, kill that many lines starting from the current line.
2766If arg is negative, kill backward. Also kill the preceding newline. 2766If arg is negative, kill backward. Also kill the preceding newline.
2767\(This is meant to make C-x z work well with negative arguments.\) 2767\(This is meant to make \\[repeat] work well with negative arguments.\)
2768If arg is zero, kill current line but exclude the trailing newline." 2768If arg is zero, kill current line but exclude the trailing newline."
2769 (interactive "p") 2769 (interactive "p")
2770 (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp))) 2770 (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."
5116(defun clone-indirect-buffer (newname display-flag &optional norecord) 5116(defun clone-indirect-buffer (newname display-flag &optional norecord)
5117 "Create an indirect buffer that is a twin copy of the current buffer. 5117 "Create an indirect buffer that is a twin copy of the current buffer.
5118 5118
5119Give the indirect buffer name NEWNAME. Interactively, read NEW-NAME 5119Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
5120from the minibuffer when invoked with a prefix arg. If NEWNAME is nil 5120from the minibuffer when invoked with a prefix arg. If NEWNAME is nil
5121or if not called with a prefix arg, NEWNAME defaults to the current 5121or if not called with a prefix arg, NEWNAME defaults to the current
5122buffer's name. The name is modified by adding a `<N>' suffix to it 5122buffer's name. The name is modified by adding a `<N>' suffix to it