aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-09 21:50:16 -0800
committerLars Ingebrigtsen2014-02-09 21:50:16 -0800
commit3bd1d8a8e0a78657290b515ce1e42db404bbf7b9 (patch)
treeb5b4ce40d8dcb984e09c4cd11e34ec6c5089dc19
parentc67955902ea6422b161245d240d702ddb3bcc722 (diff)
downloademacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.tar.gz
emacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.zip
* emacs-lisp/lisp.el (up-list): Doc fix.
Fixes: debbugs:15832
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/emacs-lisp/lisp.el10
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 @@
12014-02-10 Lars Ingebrigtsen <larsi@gnus.org> 12014-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.
109This command will also work on other parentheses-like expressions
110defined by the current language mode.
109With ARG, do it that many times. 111With ARG, do it that many times.
110Negative arg -N means move backward across N groups of parentheses. 112Negative arg -N means move backward across N groups of parentheses.
111This command assumes point is not in a string or comment." 113This 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.
120This command will also work on other parentheses-like expressions
121defined by the current language mode.
118With ARG, do it that many times. 122With ARG, do it that many times.
119Negative arg -N means move forward across N groups of parentheses. 123Negative arg -N means move forward across N groups of parentheses.
120This command assumes point is not in a string or comment." 124This 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.
131This command will also work on other parentheses-like expressions
132defined by the current language mode.
127With ARG, do this that many times. 133With ARG, do this that many times.
128A negative argument means move backward but still go down a level. 134A negative argument means move backward but still go down a level.
129This command assumes point is not in a string or comment." 135This 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.
145This command will also work on other parentheses-like expressions
146defined by the current language mode.
139With ARG, do this that many times. 147With ARG, do this that many times.
140A negative argument means move forward but still to a less deep spot. 148A negative argument means move forward but still to a less deep spot.
141This command assumes point is not in a string or comment." 149This 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.
155This command will also work on other parentheses-like expressions
156defined by the current language mode.
147With ARG, do this that many times. 157With ARG, do this that many times.
148A negative argument means move backward but still to a less deep spot. 158A negative argument means move backward but still to a less deep spot.
149This command assumes point is not in a string or comment." 159This command assumes point is not in a string or comment."