]> git.eshelyaron.com Git - emacs.git/commitdiff
(down-list, backward-up-list, up-list): Doc fix.
authorGerd Moellmann <gerd@gnu.org>
Fri, 13 Oct 2000 11:46:11 +0000 (11:46 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 13 Oct 2000 11:46:11 +0000 (11:46 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp.el

index 0ded6d0d2de9ec44c4ab4b4886f7eacf195c0928..ce6a7a76df9456105fa2bf359421c8c0456a2d73 100644 (file)
@@ -1,5 +1,8 @@
 2000-10-13  Gerd Moellmann  <gerd@gnu.org>
 
+       * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
+       fix.
+
        * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace 
        transparent -colors 8).
 
index cc0844464a063401c506745592315cb287b6844e..4050cb52dfef70f85b237073d5de52935ad0d88d 100644 (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)))