From 7b01b08c2481fe788f874e427b4ae8a7c600c5cd Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 7 Nov 2000 17:03:31 +0000 Subject: [PATCH] (dired-between-files): Add `^. find' as an alternative to the regular expression, for find-dired. --- lisp/ChangeLog | 5 +++++ lisp/dired.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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)))))) -- 2.39.5