# HG changeset patch # User Gerd Moellmann # Date 973616548 0 # Node ID 13803ac6b6808b54c716a48c32386aebc11136c2 # Parent 7b666d4d40077a1ed983aa362862a36ca251321d (dired-between-files): Add `^. find' as an alternative to the regular expression, for find-dired. diff -r 7b666d4d4007 -r 13803ac6b680 lisp/dired.el --- a/lisp/dired.el Tue Nov 07 16:53:31 2000 +0000 +++ b/lisp/dired.el Tue Nov 07 17:02:28 2000 +0000 @@ -2201,7 +2201,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\\|^. used") + (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used\\|^. find") (and (looking-at dired-subdir-regexp) (save-excursion (not (dired-move-to-filename))))))