From e5468a779dbc268c41ac10cd24d047c893502a2c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 25 Nov 2010 19:19:58 -0800 Subject: [PATCH] * lisp/calendar/diary-lib.el (diary-outlook-format-1): Another fix. --- lisp/calendar/diary-lib.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index 159682c2e63..1623ff10197 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el @@ -323,8 +323,7 @@ Returns a string using match elements 1-5, where: ;; If we could convert the monthname to a numeric month, we can ;; use the standard function calendar-date-string. (concat (if month - (calendar-date-string (list (string-to-number month) - (string-to-number day) + (calendar-date-string (list month (string-to-number day) (string-to-number year))) (cond ((eq calendar-date-style 'iso) "\\3 \\1 \\2") ; YMD ((eq calendar-date-style 'european) "\\2 \\1 \\3") ; DMY -- 2.11.4.GIT