From b41c9501e832d2369227d38962a45b7170905ec1 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 13 Oct 2000 11:46:11 +0000 Subject: (down-list, backward-up-list, up-list): Doc fix. --- lisp/emacs-lisp/lisp.el | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'lisp/emacs-lisp/lisp.el') 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." (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))) -- cgit v1.2.3