]> git.eshelyaron.com Git - emacs.git/commitdiff
(timezone-parse-date): Changed first regexp
authorRichard M. Stallman <rms@gnu.org>
Sun, 10 Jul 2005 17:19:28 +0000 (17:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 10 Jul 2005 17:19:28 +0000 (17:19 +0000)
so it will not mistakenly match dates with no time zone.

lisp/timezone.el

index cd6e3ce769f71a4da28e319394f8539cd841b010..692e2a682ce36a5069a1ecba187c12e2e3db6832 100644 (file)
@@ -149,7 +149,7 @@ Understands the following styles:
        (time nil)
        (zone nil))                     ;This may be nil.
     (cond ((string-match
-           "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date)
+           "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([-+a-zA-Z0-9]+\\)" date)
           ;; Styles: (1) and (2) with timezone and buggy timezone
           ;; This is most common in mail and news,
           ;; so it is worth trying first.