emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116386: * emacs-lisp/lisp.el (up-list): Doc fix.


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] trunk r116386: * emacs-lisp/lisp.el (up-list): Doc fix.
Date: Mon, 10 Feb 2014 05:51:33 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116386
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15832
committer: Lars Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Sun 2014-02-09 21:50:16 -0800
message:
  * emacs-lisp/lisp.el (up-list): Doc fix.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/lisp.el        lisp.el-20091113204419-o5vbwnq5f7feedwu-131
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-10 04:26:10 +0000
+++ b/lisp/ChangeLog    2014-02-10 05:50:16 +0000
@@ -1,5 +1,7 @@
 2014-02-10  Lars Ingebrigtsen  <address@hidden>
 
+       * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
+
        * files.el (confirm-kill-emacs): Allow specifying an arbitrary
        predicate function (bug#15455).
 

=== modified file 'lisp/emacs-lisp/lisp.el'
--- a/lisp/emacs-lisp/lisp.el   2014-02-10 01:34:22 +0000
+++ b/lisp/emacs-lisp/lisp.el   2014-02-10 05:50:16 +0000
@@ -106,6 +106,8 @@
 
 (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 @@
 
 (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 @@
 
 (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 @@
 
 (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 @@
 
 (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."


reply via email to

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