changeset 32456:ec203cfd2e41

(down-list, backward-up-list, up-list): Doc fix.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 13 Oct 2000 11:45:46 +0000
parents ca5f74834e1a
children 4e9d5d0ec4a9
files lisp/emacs-lisp/lisp.el
diffstat 1 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp.el	Fri Oct 13 11:30:53 2000 +0000
+++ b/lisp/emacs-lisp/lisp.el	Fri Oct 13 11:45:46 2000 +0000
@@ -97,8 +97,7 @@
 (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 @@
 (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)))