summaryrefslogtreecommitdiff
path: root/lisp/timezone.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-04-06 18:50:08 +0000
committerRichard M. Stallman <rms@gnu.org>1999-04-06 18:50:08 +0000
commit9dafdfe2852a672e71e1d8e6ab1bc187b6eeaf4b (patch)
tree6bb457455207deb093baff43d09ebfe7d5000843 /lisp/timezone.el
parent312bdc0dcbd5c4ac35b61bd4ac81711e7b7532ac (diff)
downloademacs-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.el2
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