Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8cff064c
Commit
8cff064c
authored
Feb 07, 2014
by
Lars Ingebrigtsen
Browse files
(dired-prev-marked-file): Doc fix (bug#14855).
parent
be58a238
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+1
-0
lisp/dired.el
lisp/dired.el
+6
-2
No files found.
lisp/ChangeLog
View file @
8cff064c
2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
* dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
* 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).
* minibuffer.el (read-file-name): Doc clarification (bug#15096).
...
...
lisp/dired.el
View file @
8cff064c
...
@@ -3140,7 +3140,9 @@ argument or confirmation)."
...
@@ -3140,7 +3140,9 @@ argument or confirmation)."
(save-excursion (not (dired-move-to-filename))))
(save-excursion (not (dired-move-to-filename))))
(defun dired-next-marked-file (arg &optional wrap opoint)
(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
")
(interactive "
p\np
")
(or opoint (setq opoint (point)));; return to where interactively started
(or opoint (setq opoint (point)));; return to where interactively started
(if (if (> arg 0)
(if (if (> arg 0)
...
@@ -3157,7 +3159,9 @@ argument or confirmation)."
...
@@ -3157,7 +3159,9 @@ argument or confirmation)."
(dired-next-marked-file arg nil opoint))))
(dired-next-marked-file arg nil opoint))))
(defun dired-prev-marked-file (arg &optional wrap)
(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
")
(interactive "
p\np
")
(dired-next-marked-file (- arg) wrap))
(dired-next-marked-file (- arg) wrap))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment