From 8a1f0e40e1604515df43ecbc435c8d4e20ce33d4 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 7 Nov 2000 17:02:28 +0000 Subject: [PATCH] (dired-between-files): Add `^. find' as an alternative to the regular expression, for find-dired. --- lisp/dired.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.11.4.GIT