diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-02-09 09:40:01 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-02-09 09:40:01 +0000 |
commit | 277568f269b34695a60823ea2210d9d6007dff7a (patch) | |
tree | ac3892ed1f561197bee1a9e845204548d184cac1 /lisp/dired.el | |
parent | 17b406a83508e8b2ac984b86e9b72135bf23eba1 (diff) | |
download | emacs-277568f269b34695a60823ea2210d9d6007dff7a.tar.gz |
(dired-mark): If on dir header line, always mark
the files in that dir.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 9a188792719..c3f071021ef 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -1874,7 +1874,7 @@ Use \\[dired-unmark-all-files] to remove all marks and \\[dired-unmark] on a subdir to remove the marks in this subdir." (interactive "P") - (if (and (cdr dired-subdir-alist) (dired-get-subdir)) + (if (dired-get-subdir) (save-excursion (dired-mark-subdir-files)) (let (buffer-read-only) (dired-repeat-over-lines |