diff options
| author | Gerd Moellmann | 2000-10-13 11:46:11 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-10-13 11:46:11 +0000 |
| commit | b41c9501e832d2369227d38962a45b7170905ec1 (patch) | |
| tree | eeee15124037635f702467a24f177497b61de7a7 | |
| parent | 3b5e21df1c03c62197af6b7b4261445d3ec6cb1e (diff) | |
| download | emacs-b41c9501e832d2369227d38962a45b7170905ec1.tar.gz emacs-b41c9501e832d2369227d38962a45b7170905ec1.zip | |
(down-list, backward-up-list, up-list): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 9 |
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 @@ | |||
| 1 | 2000-10-13 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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. |
| 99 | With ARG, do this that many times. | 99 | With ARG, do this that many times. |
| 100 | A negative argument means move backward but still go down a level. | 100 | A negative argument means move backward but still go down a level." |
| 101 | In 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. |
| 111 | With ARG, do this that many times. | 110 | With ARG, do this that many times. |
| 112 | A negative argument means move forward but still to a less deep spot. | 111 | A negative argument means move forward but still to a less deep spot." |
| 113 | In 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. |
| 119 | With ARG, do this that many times. | 117 | With ARG, do this that many times. |
| 120 | A negative argument means move backward but still to a less deep spot. | 118 | A negative argument means move backward but still to a less deep spot." |
| 121 | In 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))) |