From 3393364b6b925ec6ad4b2570ed8ea5358170b312 Mon Sep 17 00:00:00 2001 From: Andreas Merziger Date: Thu, 15 Aug 2019 18:39:27 -0700 Subject: [PATCH] Make diary-european-date-forms elements mutually exclusive * lisp/calendar/calendar.el (diary-european-date-forms): Make the elements mutually exclusive (bug#13536). --- lisp/calendar/calendar.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 14604a673d0..e7a7bd47d61 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -799,7 +799,7 @@ but `diary-date-forms' (which see)." '((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)") - (day " *" monthname " *" year "[^0-9]") + (day " *" monthname " *" year "[^0-9:aApP]") (dayname "\\W")) "List of pseudo-patterns describing the European style of dates. The defaults are: DAY/MONTH; DAY/MONTH/YEAR; DAY MONTHNAME; -- 2.39.2