Mercurial > emacs
changeset 33279:13803ac6b680
(dired-between-files): Add `^. find' as an alternative
to the regular expression, for find-dired.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 07 Nov 2000 17:02:28 +0000 |
parents | 7b666d4d4007 |
children | 920772ef4729 |
files | lisp/dired.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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))))))