]> git.eshelyaron.com Git - emacs.git/commitdiff
(european-date-diary-pattern): Fix pattern so it
authorRichard M. Stallman <rms@gnu.org>
Mon, 2 Aug 1999 00:32:50 +0000 (00:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 2 Aug 1999 00:32:50 +0000 (00:32 +0000)
does not interpret a time as the year in a day-month entry.

lisp/calendar/calendar.el

index 0ed6d844a6d217057d5229c01267fb26a1286a40..4a4690ec3f3be86d1822b09f9394a341c28f855a 100644 (file)
@@ -518,7 +518,7 @@ See the documentation of `diary-date-forms' for an explanation."
 (defcustom european-date-diary-pattern
   '((day "/" month "[^/0-9]")
     (day "/" month "/" year "[^0-9]")
-    (backup day " *" monthname "\\W+\\<[^*0-9]")
+    (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)")
     (day " *" monthname " *" year "[^0-9]")
     (dayname "\\W"))
   "*List of pseudo-patterns describing the European patterns of date used.