1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(dired-between-files): Add `^. find' as an alternative

to the regular expression, for find-dired.
This commit is contained in:
Gerd Moellmann 2000-11-07 17:03:31 +00:00
parent 4295d0b2b0
commit 7b01b08c24
2 changed files with 6 additions and 1 deletions

View 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.

View 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))))))