diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-04-06 18:50:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-04-06 18:50:08 +0000 |
commit | 9dafdfe2852a672e71e1d8e6ab1bc187b6eeaf4b (patch) | |
tree | 6bb457455207deb093baff43d09ebfe7d5000843 /lisp/timezone.el | |
parent | 312bdc0dcbd5c4ac35b61bd4ac81711e7b7532ac (diff) | |
download | emacs-9dafdfe2852a672e71e1d8e6ab1bc187b6eeaf4b.tar.gz |
(timezone-parse-date): Corrected regexp for
style (5) date format so that tenths of seconds are optional.
Diffstat (limited to 'lisp/timezone.el')
-rw-r--r-- | lisp/timezone.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/timezone.el b/lisp/timezone.el index 3de071a4a70..a7ff21d8310 100644 --- a/lisp/timezone.el +++ b/lisp/timezone.el @@ -176,7 +176,7 @@ Understands the following styles: ;; Styles: (4) with timezone (setq year 3 month 2 day 1 time 4 zone 5)) ((string-match - "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\.[0-9]+" date) + "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?" date) ;; Styles: (5) without timezone. (setq year 3 month 2 day 1 time 4 zone nil)) ((string-match |