Mercurial > emacs
changeset 28966:4005c645c1cf
(dired-between-files): Also skip lines beginning with `used'.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Thu, 18 May 2000 12:19:41 +0000 |
parents | dead0196fbc8 |
children | 05c01c4206d8 |
files | lisp/dired.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dired.el Wed May 17 23:35:57 2000 +0000 +++ b/lisp/dired.el Thu May 18 12:19:41 2000 +0000 @@ -2178,7 +2178,7 @@ ;; Point must be at beginning of line ;; Should be equivalent to (save-excursion (not (dired-move-to-filename))) ;; but is about 1.5..2.0 times as fast. (Actually that's not worth it) - (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard") + (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used") (and (looking-at dired-subdir-regexp) (save-excursion (not (dired-move-to-filename))))))