diff options
author | André Spiegel <spiegel@gnu.org> | 1999-06-09 16:52:56 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 1999-06-09 16:52:56 +0000 |
commit | fdc3f606b1aa6cb03eb4f99951632f6822f963b3 (patch) | |
tree | 0a70f6cfeeda9a48ea027fd03ffc43a123c4d004 /lisp/vc.el | |
parent | d6bd663cc1203681951dc358c7ce04e4aca58653 (diff) | |
download | emacs-fdc3f606b1aa6cb03eb4f99951632f6822f963b3.tar.gz |
(vc-dired-mode): Don't match anything before the date in
dired-move-to-filename-regexp.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index a73dfd59a9f..77fa1c2b168 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -5,7 +5,7 @@ ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> ;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de> -;; $Id: vc.el,v 1.245 1999/04/08 12:43:48 spiegel Exp rms $ +;; $Id: vc.el,v 1.246 1999/05/23 05:34:53 rms Exp spiegel $ ;; This file is part of GNU Emacs. @@ -1702,7 +1702,7 @@ There is a special command, `*l', to mark all files currently locked." (western (concat "\\(" month s dd "\\|" dd s month "\\)" s "\\(" HH:MM "\\|" s yyyy"\\|" yyyy s "\\)")) (japanese (concat mm k s dd k s "\\(" s HH:MM "\\|" yyyy k "\\)"))) - (concat "\\([0-9]\\|) +\\| \\)" s "\\(" western "\\|" japanese "\\)" s))) + (concat s "\\(" western "\\|" japanese "\\)" s))) (and (boundp 'vc-dired-switches) vc-dired-switches (set (make-local-variable 'dired-actual-switches) |