aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-10-13 11:46:11 +0000
committerGerd Moellmann2000-10-13 11:46:11 +0000
commitb41c9501e832d2369227d38962a45b7170905ec1 (patch)
treeeeee15124037635f702467a24f177497b61de7a7
parent3b5e21df1c03c62197af6b7b4261445d3ec6cb1e (diff)
downloademacs-b41c9501e832d2369227d38962a45b7170905ec1.tar.gz
emacs-b41c9501e832d2369227d38962a45b7170905ec1.zip
(down-list, backward-up-list, up-list): Doc fix.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/emacs-lisp/lisp.el9
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0ded6d0d2de..ce6a7a76df9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12000-10-13 Gerd Moellmann <gerd@gnu.org> 12000-10-13 Gerd Moellmann <gerd@gnu.org>
2 2
3 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
4 fix.
5
3 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace 6 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
4 transparent -colors 8). 7 transparent -colors 8).
5 8
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index cc0844464a0..4050cb52dfe 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -97,8 +97,7 @@ Negative arg -N means move forward across N groups of parentheses."
97(defun down-list (&optional arg) 97(defun down-list (&optional arg)
98 "Move forward down one level of parentheses. 98 "Move forward down one level of parentheses.
99With ARG, do this that many times. 99With ARG, do this that many times.
100A negative argument means move backward but still go down a level. 100A negative argument means move backward but still go down a level."
101In Lisp programs, an argument is required."
102 (interactive "p") 101 (interactive "p")
103 (or arg (setq arg 1)) 102 (or arg (setq arg 1))
104 (let ((inc (if (> arg 0) 1 -1))) 103 (let ((inc (if (> arg 0) 1 -1)))
@@ -109,16 +108,14 @@ In Lisp programs, an argument is required."
109(defun backward-up-list (&optional arg) 108(defun backward-up-list (&optional arg)
110 "Move backward out of one level of parentheses. 109 "Move backward out of one level of parentheses.
111With ARG, do this that many times. 110With ARG, do this that many times.
112A negative argument means move forward but still to a less deep spot. 111A negative argument means move forward but still to a less deep spot."
113In Lisp programs, an argument is required."
114 (interactive "p") 112 (interactive "p")
115 (up-list (- (or arg 1)))) 113 (up-list (- (or arg 1))))
116 114
117(defun up-list (&optional arg) 115(defun up-list (&optional arg)
118 "Move forward out of one level of parentheses. 116 "Move forward out of one level of parentheses.
119With ARG, do this that many times. 117With ARG, do this that many times.
120A negative argument means move backward but still to a less deep spot. 118A negative argument means move backward but still to a less deep spot."
121In Lisp programs, an argument is required."
122 (interactive "p") 119 (interactive "p")
123 (or arg (setq arg 1)) 120 (or arg (setq arg 1))
124 (let ((inc (if (> arg 0) 1 -1))) 121 (let ((inc (if (> arg 0) 1 -1)))