emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116333: (dired-prev-marked-file): Doc fix (bug#1485


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] trunk r116333: (dired-prev-marked-file): Doc fix (bug#14855).
Date: Sat, 08 Feb 2014 06:17:33 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116333
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/14855
committer: Lars Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Fri 2014-02-07 22:16:23 -0800
message:
  (dired-prev-marked-file): Doc fix (bug#14855).
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/dired.el                  dired.el-20091113204419-o5vbwnq5f7feedwu-482
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-08 06:10:22 +0000
+++ b/lisp/ChangeLog    2014-02-08 06:16:23 +0000
@@ -1,6 +1,7 @@
 2014-02-08  Lars Ingebrigtsen  <address@hidden>
 
        * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
+       (dired-prev-marked-file): Doc fix (bug#14855).
 
        * minibuffer.el (read-file-name): Doc clarification (bug#15096).
 

=== modified file 'lisp/dired.el'
--- a/lisp/dired.el     2014-02-08 06:10:22 +0000
+++ b/lisp/dired.el     2014-02-08 06:16:23 +0000
@@ -3140,7 +3140,9 @@
   (save-excursion (not (dired-move-to-filename))))
 
 (defun dired-next-marked-file (arg &optional wrap opoint)
-  "Move to the next marked file, wrapping around the end of the buffer."
+  "Move to the next marked file.
+If WRAP is non-nil, wrap around to the beginning of the buffer if
+we reach the end."
   (interactive "p\np")
   (or opoint (setq opoint (point)));; return to where interactively started
   (if (if (> arg 0)
@@ -3157,7 +3159,9 @@
       (dired-next-marked-file arg nil opoint))))
 
 (defun dired-prev-marked-file (arg &optional wrap)
-  "Move to the previous marked file, wrapping around the end of the buffer."
+  "Move to the previous marked file.
+If WRAP is non-nil, wrap around to the end of the buffer if we
+reach the beginning of the buffer."
   (interactive "p\np")
   (dired-next-marked-file (- arg) wrap))
 


reply via email to

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