emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r112966: * emacs-lisp/lisp.el (forward-sexp, backwar


From: Glenn Morris
Subject: [Emacs-diffs] trunk r112966: * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
Date: Thu, 13 Jun 2013 16:44:36 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112966
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2013-06-13 09:44:26 -0700
message:
  * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/lisp.el        lisp.el-20091113204419-o5vbwnq5f7feedwu-131
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-06-13 10:12:34 +0000
+++ b/lisp/ChangeLog    2013-06-13 16:44:26 +0000
@@ -1,3 +1,7 @@
+2013-06-13  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
+
 2013-06-13  Michael Albinus  <address@hidden>
 
        Implement changes in Secret Service API.  Make it backward compatible.

=== modified file 'lisp/emacs-lisp/lisp.el'
--- a/lisp/emacs-lisp/lisp.el   2013-06-03 15:40:35 +0000
+++ b/lisp/emacs-lisp/lisp.el   2013-06-13 16:44:26 +0000
@@ -59,7 +59,8 @@
   "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 @@
   "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)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]