From: Gerd Moellmann Date: Tue, 7 Nov 2000 17:03:31 +0000 (+0000) Subject: (dired-between-files): Add `^. find' as an alternative X-Git-Tag: emacs-pretest-21.0.90~245 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b01b08c2481fe788f874e427b4ae8a7c600c5cd;p=emacs.git (dired-between-files): Add `^. find' as an alternative to the regular expression, for find-dired. --- 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))))))