diff options
author | Andreas Merziger <andreas.merziger@online.de> | 2019-08-15 18:39:27 -0700 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-08-15 18:39:27 -0700 |
commit | 3393364b6b925ec6ad4b2570ed8ea5358170b312 (patch) | |
tree | f0684917cd59cb5b211d34f9033aea2ff676a8fb /lisp/calendar/calendar.el | |
parent | 1cf489c1657378e95057d795234c99df128391a6 (diff) | |
download | emacs-3393364b6b925ec6ad4b2570ed8ea5358170b312.tar.gz |
Make diary-european-date-forms elements mutually exclusive
* lisp/calendar/calendar.el (diary-european-date-forms): Make the
elements mutually exclusive (bug#13536).
Diffstat (limited to 'lisp/calendar/calendar.el')
-rw-r--r-- | lisp/calendar/calendar.el | 2 |
1 files changed, 1 insertions, 1 deletions
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; |