]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-between-files): Add `^. find' as an alternative
authorGerd Moellmann <gerd@gnu.org>
Tue, 7 Nov 2000 17:03:31 +0000 (17:03 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 7 Nov 2000 17:03:31 +0000 (17:03 +0000)
to the regular expression, for find-dired.

lisp/ChangeLog
lisp/dired.el

index 3ceb48970e8d8920313fc807ce6776e8b3b576fe..6fed746a2d8a7c9ecebe90ac0053a007dc40690c 100644 (file)
@@ -1,3 +1,8 @@
+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.
index 795ca3c30058344dee127dd3a8b1b3a36377d2d5..926bbee73a47c9427a39e58b1ae9373857e663ba 100644 (file)
@@ -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))))))