changeset 25154:4c873bb645d8

(european-date-diary-pattern): Fix pattern so it does not interpret a time as the year in a day-month entry.
author Richard M. Stallman <rms@gnu.org>
date Mon, 02 Aug 1999 00:32:50 +0000
parents fc8435c2ae0e
children acad42cf5361
files lisp/calendar/calendar.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/calendar/calendar.el	Mon Aug 02 00:10:19 1999 +0000
+++ b/lisp/calendar/calendar.el	Mon Aug 02 00:32:50 1999 +0000
@@ -518,7 +518,7 @@
 (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.