diff options
author | Glenn Morris <rgm@gnu.org> | 2010-11-25 19:19:58 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-11-25 19:19:58 -0800 |
commit | e5468a779dbc268c41ac10cd24d047c893502a2c (patch) | |
tree | 86145d01e83201db5ccaeaa0bb450f36179acc0d /lisp/calendar | |
parent | 92c56fe7fd59e7bb8c374c71db82f3a941e47181 (diff) | |
download | emacs-e5468a779dbc268c41ac10cd24d047c893502a2c.tar.gz |
* lisp/calendar/diary-lib.el (diary-outlook-format-1): Another fix.
Diffstat (limited to 'lisp/calendar')
-rw-r--r-- | lisp/calendar/diary-lib.el | 3 |
1 files changed, 1 insertions, 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 |