Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3bd1d8a8
Commit
3bd1d8a8
authored
Feb 09, 2014
by
Lars Ingebrigtsen
Browse files
* emacs-lisp/lisp.el (up-list): Doc fix.
Fixes: debbugs:15832
parent
c6795590
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/emacs-lisp/lisp.el
lisp/emacs-lisp/lisp.el
+10
-0
No files found.
lisp/ChangeLog
View file @
3bd1d8a8
2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
* emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
* files.el (confirm-kill-emacs): Allow specifying an arbitrary
predicate function (bug#15455).
...
...
lisp/emacs-lisp/lisp.el
View file @
3bd1d8a8
...
...
@@ -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."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment