emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r104906: * dired.el (dired-map-over-m


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104906: * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
Date: Sun, 03 Jul 2011 15:25:18 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104906
fixes bug(s): http://debbugs.gnu.org/6814
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Sun 2011-07-03 15:25:18 +0200
message:
  * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
modified:
  lisp/ChangeLog
  lisp/dired.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-07-03 02:37:52 +0000
+++ b/lisp/ChangeLog    2011-07-03 13:25:18 +0000
@@ -1,5 +1,7 @@
 2011-07-03  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
+
        * fringe.el (fringe-query-style): Remove redundant text " (type ?
        for list)" (bug#6475).
 

=== modified file 'lisp/dired.el'
--- a/lisp/dired.el     2011-07-02 13:28:19 +0000
+++ b/lisp/dired.el     2011-07-03 13:25:18 +0000
@@ -515,24 +515,31 @@
 (defmacro dired-map-over-marks (body arg &optional show-progress
                                     distinguish-one-marked)
   "Eval BODY with point on each marked line.  Return a list of BODY's results.
-If no marked file could be found, execute BODY on the current line.
-ARG, if non-nil, specifies the files to use instead of the marked files.
-  If ARG is an integer, use the next ARG (or previous -ARG, if
-   ARG<0) files.  In that case, point is dragged along.  This is
-   so that commands on the next ARG (instead of the marked) files
-   can be chained easily.
-  For any other non-nil value of ARG, use the current file.
+If no marked file could be found, execute BODY on the current
+line.  ARG, if non-nil, specifies the files to use instead of the
+marked files.
+
+If ARG is an integer, use the next ARG (or previous -ARG, if
+ARG<0) files.  In that case, point is dragged along.  This is so
+that commands on the next ARG (instead of the marked) files can
+be chained easily.
+For any other non-nil value of ARG, use the current file.
+
 If optional third arg SHOW-PROGRESS evaluates to non-nil,
-  redisplay the dired buffer after each file is processed.
-No guarantee is made about the position on the marked line.
-  BODY must ensure this itself if it depends on this.
-Search starts at the beginning of the buffer, thus the car of the list
-  corresponds to the line nearest to the buffer's bottom.  This
-  is also true for (positive and negative) integer values of ARG.
+redisplay the dired buffer after each file is processed.
+
+No guarantee is made about the position on the marked line.  BODY
+must ensure this itself if it depends on this.
+
+Search starts at the beginning of the buffer, thus the car of the
+list corresponds to the line nearest to the buffer's bottom.
+This is also true for (positive and negative) integer values of
+ARG.
+
 BODY should not be too long as it is expanded four times.
 
-If DISTINGUISH-ONE-MARKED is non-nil, then if we find just one marked file,
-return (t FILENAME) instead of (FILENAME)."
+If DISTINGUISH-ONE-MARKED is non-nil, then if we find just one
+marked file, return (t FILENAME) instead of (FILENAME)."
   ;;
   ;;Warning: BODY must not add new lines before point - this may cause an
   ;;endless loop.


reply via email to

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