diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ceb48970e8..6fed746a2d8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2000-11-07 Gerd Moellmann + + * dired.el (dired-between-files): Add `^. find' as an alternative + to the regular expression, for find-dired. + 2000-11-06 Stefan Monnier * textmodes/texnfo-upd.el: Require texinfo. diff --git a/lisp/dired.el b/lisp/dired.el index 795ca3c3005..926bbee73a4 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -2201,7 +2201,7 @@ FILES is the list of marked files." ;; 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\\|^. used") + (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used\\|^. find") (and (looking-at dired-subdir-regexp) (save-excursion (not (dired-move-to-filename))))))