aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calendar/calendar.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1999-08-02 00:32:50 +0000
committerRichard M. Stallman <[email protected]>1999-08-02 00:32:50 +0000
commitbb0541f8bae3bec43fb514f2fc6f10849935aa1b (patch)
tree8170fcb73dfee0212669847078c3be22b27d0197 /lisp/calendar/calendar.el
parent95aa0336b564a9091e2433437e479f0f47e389bb (diff)
(european-date-diary-pattern): Fix pattern so it
does not interpret a time as the year in a day-month entry.
Diffstat (limited to 'lisp/calendar/calendar.el')
-rw-r--r--lisp/calendar/calendar.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index 0ed6d844a6..4a4690ec3f 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -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.