aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1999-05-23 05:34:53 +0000
committerRichard M. Stallman <[email protected]>1999-05-23 05:34:53 +0000
commite4f95b80d8ce27be24067a7f8137a4a79cfa2ddc (patch)
treebc2cab32373e31e752473ab0ca5d40d5768dc1d3 /lisp
parent6934b6e29bcc81770d79a51f80acd40995ec82df (diff)
(vc-dired-mode): Make the dired-move-to-filename-regexp
regexp match the date, to avoid treating date as file size. Add YYYY S option to WESTERN/
Diffstat (limited to 'lisp')
-rw-r--r--lisp/vc.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 7b1411118d..a73dfd59a9 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -5,7 +5,7 @@
;; Author: Eric S. Raymond <[email protected]>
;; Maintainer: Andre Spiegel <[email protected]>
-;; $Id: vc.el,v 1.244 1999/03/13 05:04:24 kwzh Exp spiegel $
+;; $Id: vc.el,v 1.245 1999/04/08 12:43:48 spiegel Exp rms $
;; This file is part of GNU Emacs.
@@ -1700,9 +1700,9 @@ There is a special command, `*l', to mark all files currently locked."
(dd "[ 0-3][0-9]")
(HH:MM "[ 0-2][0-9]:[0-5][0-9]")
(western (concat "\\(" month s dd "\\|" dd s month "\\)"
- s "\\(" HH:MM "\\|" s yyyy "\\)"))
+ s "\\(" HH:MM "\\|" s yyyy"\\|" yyyy s "\\)"))
(japanese (concat mm k s dd k s "\\(" s HH:MM "\\|" yyyy k "\\)")))
- (concat s "\\(" western "\\|" japanese "\\)" s)))
+ (concat "\\([0-9]\\|) +\\| \\)" s "\\(" western "\\|" japanese "\\)" s)))
(and (boundp 'vc-dired-switches)
vc-dired-switches
(set (make-local-variable 'dired-actual-switches)