diff options
| author | Glenn Morris <rgm@gnu.org> | 2013-06-13 09:44:26 -0700 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2013-06-13 09:44:26 -0700 |
| commit | ba947bc42f25610df83c3e36d8b7949102054427 (patch) | |
| tree | d0bc3b30beed16226f90242f3aeb22c02703c204 | |
| parent | 94fa6ec7b306b47c251f7b8b67662598027a7ff3 (diff) | |
| download | emacs-ba947bc42f25610df83c3e36d8b7949102054427.tar.gz | |
* emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2d9fd3f28b4..6ed8840a450 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +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. diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index a31bef2391d..b37a811b8d5 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -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))) |
