1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 15:00:34 -08:00

(down-list, backward-up-list, up-list): Doc fix.

This commit is contained in:
Gerd Moellmann 2000-10-13 11:46:11 +00:00
parent 3b5e21df1c
commit b41c9501e8
2 changed files with 6 additions and 6 deletions

View file

@ -97,8 +97,7 @@ Negative arg -N means move forward across N groups of parentheses."
(defun down-list (&optional arg)
"Move forward down one level of parentheses.
With ARG, do this that many times.
A negative argument means move backward but still go down a level.
In Lisp programs, an argument is required."
A negative argument means move backward but still go down a level."
(interactive "p")
(or arg (setq arg 1))
(let ((inc (if (> arg 0) 1 -1)))
@ -109,16 +108,14 @@ In Lisp programs, an argument is required."
(defun backward-up-list (&optional arg)
"Move backward out of one level of parentheses.
With ARG, do this that many times.
A negative argument means move forward but still to a less deep spot.
In Lisp programs, an argument is required."
A negative argument means move forward but still to a less deep spot."
(interactive "p")
(up-list (- (or arg 1))))
(defun up-list (&optional arg)
"Move forward out of one level of parentheses.
With ARG, do this that many times.
A negative argument means move backward but still to a less deep spot.
In Lisp programs, an argument is required."
A negative argument means move backward but still to a less deep spot."
(interactive "p")
(or arg (setq arg 1))
(let ((inc (if (> arg 0) 1 -1)))