diff options
| author | Lars Ingebrigtsen | 2014-02-09 21:50:16 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-09 21:50:16 -0800 |
| commit | 3bd1d8a8e0a78657290b515ce1e42db404bbf7b9 (patch) | |
| tree | b5b4ce40d8dcb984e09c4cd11e34ec6c5089dc19 | |
| parent | c67955902ea6422b161245d240d702ddb3bcc722 (diff) | |
| download | emacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.tar.gz emacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.zip | |
* emacs-lisp/lisp.el (up-list): Doc fix.
Fixes: debbugs:15832
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 42af81b2217..3a73bbd2fee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832). | ||
| 4 | |||
| 3 | * files.el (confirm-kill-emacs): Allow specifying an arbitrary | 5 | * files.el (confirm-kill-emacs): Allow specifying an arbitrary |
| 4 | predicate function (bug#15455). | 6 | predicate function (bug#15455). |
| 5 | 7 | ||
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 5ce8fa523a0..03be2f5c1aa 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el | |||
| @@ -106,6 +106,8 @@ This command assumes point is not in a string or comment." | |||
| 106 | 106 | ||
| 107 | (defun forward-list (&optional arg) | 107 | (defun forward-list (&optional arg) |
| 108 | "Move forward across one balanced group of parentheses. | 108 | "Move forward across one balanced group of parentheses. |
| 109 | This command will also work on other parentheses-like expressions | ||
| 110 | defined by the current language mode. | ||
| 109 | With ARG, do it that many times. | 111 | With ARG, do it that many times. |
| 110 | Negative arg -N means move backward across N groups of parentheses. | 112 | Negative arg -N means move backward across N groups of parentheses. |
| 111 | This command assumes point is not in a string or comment." | 113 | This command assumes point is not in a string or comment." |
| @@ -115,6 +117,8 @@ This command assumes point is not in a string or comment." | |||
| 115 | 117 | ||
| 116 | (defun backward-list (&optional arg) | 118 | (defun backward-list (&optional arg) |
| 117 | "Move backward across one balanced group of parentheses. | 119 | "Move backward across one balanced group of parentheses. |
| 120 | This command will also work on other parentheses-like expressions | ||
| 121 | defined by the current language mode. | ||
| 118 | With ARG, do it that many times. | 122 | With ARG, do it that many times. |
| 119 | Negative arg -N means move forward across N groups of parentheses. | 123 | Negative arg -N means move forward across N groups of parentheses. |
| 120 | This command assumes point is not in a string or comment." | 124 | This command assumes point is not in a string or comment." |
| @@ -124,6 +128,8 @@ This command assumes point is not in a string or comment." | |||
| 124 | 128 | ||
| 125 | (defun down-list (&optional arg) | 129 | (defun down-list (&optional arg) |
| 126 | "Move forward down one level of parentheses. | 130 | "Move forward down one level of parentheses. |
| 131 | This command will also work on other parentheses-like expressions | ||
| 132 | defined by the current language mode. | ||
| 127 | With ARG, do this that many times. | 133 | With ARG, do this that many times. |
| 128 | A negative argument means move backward but still go down a level. | 134 | A negative argument means move backward but still go down a level. |
| 129 | This command assumes point is not in a string or comment." | 135 | This command assumes point is not in a string or comment." |
| @@ -136,6 +142,8 @@ This command assumes point is not in a string or comment." | |||
| 136 | 142 | ||
| 137 | (defun backward-up-list (&optional arg) | 143 | (defun backward-up-list (&optional arg) |
| 138 | "Move backward out of one level of parentheses. | 144 | "Move backward out of one level of parentheses. |
| 145 | This command will also work on other parentheses-like expressions | ||
| 146 | defined by the current language mode. | ||
| 139 | With ARG, do this that many times. | 147 | With ARG, do this that many times. |
| 140 | A negative argument means move forward but still to a less deep spot. | 148 | A negative argument means move forward but still to a less deep spot. |
| 141 | This command assumes point is not in a string or comment." | 149 | This command assumes point is not in a string or comment." |
| @@ -144,6 +152,8 @@ This command assumes point is not in a string or comment." | |||
| 144 | 152 | ||
| 145 | (defun up-list (&optional arg) | 153 | (defun up-list (&optional arg) |
| 146 | "Move forward out of one level of parentheses. | 154 | "Move forward out of one level of parentheses. |
| 155 | This command will also work on other parentheses-like expressions | ||
| 156 | defined by the current language mode. | ||
| 147 | With ARG, do this that many times. | 157 | With ARG, do this that many times. |
| 148 | A negative argument means move backward but still to a less deep spot. | 158 | A negative argument means move backward but still to a less deep spot. |
| 149 | This command assumes point is not in a string or comment." | 159 | This command assumes point is not in a string or comment." |