summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/lisp.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2014-02-09 21:50:16 -0800
committerLars Ingebrigtsen <larsi@gnus.org>2014-02-09 21:50:16 -0800
commit3bd1d8a8e0a78657290b515ce1e42db404bbf7b9 (patch)
treeb5b4ce40d8dcb984e09c4cd11e34ec6c5089dc19 /lisp/emacs-lisp/lisp.el
parentc67955902ea6422b161245d240d702ddb3bcc722 (diff)
downloademacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.tar.gz
emacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.tar.bz2
emacs-3bd1d8a8e0a78657290b515ce1e42db404bbf7b9.zip
* emacs-lisp/lisp.el (up-list): Doc fix.
Fixes: debbugs:15832
Diffstat (limited to 'lisp/emacs-lisp/lisp.el')
-rw-r--r--lisp/emacs-lisp/lisp.el10
1 files changed, 10 insertions, 0 deletions
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."
(defun forward-list (&optional arg)
"Move forward across one balanced group of parentheses.
+This command will also work on other parentheses-like expressions
+defined by the current language mode.
With ARG, do it that many times.
Negative arg -N means move backward across N groups of parentheses.
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."
(defun backward-list (&optional arg)
"Move backward across one balanced group of parentheses.
+This command will also work on other parentheses-like expressions
+defined by the current language mode.
With ARG, do it that many times.
Negative arg -N means move forward across N groups of parentheses.
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."
(defun down-list (&optional arg)
"Move forward down one level of parentheses.
+This command will also work on other parentheses-like expressions
+defined by the current language mode.
With ARG, do this that many times.
A negative argument means move backward but still go down a level.
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."
(defun backward-up-list (&optional arg)
"Move backward out of one level of parentheses.
+This command will also work on other parentheses-like expressions
+defined by the current language mode.
With ARG, do this that many times.
A negative argument means move forward but still to a less deep spot.
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."
(defun up-list (&optional arg)
"Move forward out of one level of parentheses.
+This command will also work on other parentheses-like expressions
+defined by the current language mode.
With ARG, do this that many times.
A negative argument means move backward but still to a less deep spot.
This command assumes point is not in a string or comment."