diff options
author | Juri Linkov <juri@jurta.org> | 2004-03-31 16:06:43 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2004-03-31 16:06:43 +0000 |
commit | 778f4651d52478fbe09ef639e90d89c5e3a7db66 (patch) | |
tree | 7bcb296f1ce21cf9c81e7a9771bdfbd6b53cdf31 | |
parent | 7a8560d7d76040a75cf9bacafac98c5b75426762 (diff) | |
download | emacs-778f4651d52478fbe09ef639e90d89c5e3a7db66.tar.gz |
(dired-move-to-filename-regexp): Add . to HH:MM.
-rw-r--r-- | lisp/dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index cfdb57d614c..6491e11c1e0 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -1630,7 +1630,7 @@ DIR must be a directory name, not a file name." (s " ") (yyyy "[0-9][0-9][0-9][0-9]") (dd "[ 0-3][0-9]") - (HH:MM "[ 0-2][0-9]:[0-5][0-9]") + (HH:MM "[ 0-2][0-9][:.][0-5][0-9]") (seconds "[0-6][0-9]\\([.,][0-9]+\\)?") (zone "[-+][0-2][0-9][0-5][0-9]") (iso-mm-dd "[01][0-9]-[0-3][0-9]") |