to the regular expression, for find-dired.
+2000-11-07 Gerd Moellmann <gerd@gnu.org>
+
+ * dired.el (dired-between-files): Add `^. find' as an alternative
+ to the regular expression, for find-dired.
+
2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
* textmodes/texnfo-upd.el: Require texinfo.
;; 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))))))