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
ba947bc4
Commit
ba947bc4
authored
Jun 13, 2013
by
Glenn Morris
Browse files
* emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
parent
94fa6ec7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/emacs-lisp/lisp.el
lisp/emacs-lisp/lisp.el
+4
-2
No files found.
lisp/ChangeLog
View file @
ba947bc4
2013-06-13 Glenn Morris <rgm@gnu.org>
* emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
2013-06-13 Michael Albinus <michael.albinus@gmx.de>
Implement changes in Secret Service API. Make it backward compatible.
lisp/emacs-lisp/lisp.el
View file @
ba947bc4
...
...
@@ -59,7 +59,8 @@ Should take the same arguments and behave similarly to `forward-sexp'.")
"Move forward across one balanced expression (sexp).
With ARG, do it that many times. Negative arg -N means
move backward across N balanced expressions.
This command assumes point is not in a string or comment."
This command assumes point is not in a string or comment.
Calls `forward-sexp-function' to do the work, if that is non-nil."
(
interactive
"^p"
)
(
or
arg
(
setq
arg
1
))
(
if
forward-sexp-function
...
...
@@ -71,7 +72,8 @@ This command assumes point is not in a string or comment."
"Move backward across one balanced expression (sexp).
With ARG, do it that many times. Negative arg -N means
move forward across N balanced expressions.
This command assumes point is not in a string or comment."
This command assumes point is not in a string or comment.
Uses `forward-sexp' to do the work."
(
interactive
"^p"
)
(
or
arg
(
setq
arg
1
))
(
forward-sexp
(
-
arg
)))
...
...
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