* diary-lib.el (diary-outlook-format-1): Don't include dayname in the output.
authorGlenn Morris <rgm@gnu.org>
Sun, 12 May 2013 01:34:30 +0000 (18:34 -0700)
committerGlenn Morris <rgm@gnu.org>
Sun, 12 May 2013 01:34:30 +0000 (18:34 -0700)
Fixes: debbugs:14349

lisp/ChangeLog
lisp/calendar/diary-lib.el

index cc1703b..6d82c79 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-12  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/diary-lib.el (diary-outlook-format-1):
+       Don't include dayname in the output.  (Bug#14349)
+
 2013-05-11  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
index 2cc3811..7be44b4 100644 (file)
@@ -366,7 +366,7 @@ Returns a string using match elements 1-5, where:
     ;; use the standard function calendar-date-string.
     (concat (if month
                 (calendar-date-string (list month (string-to-number day)
-                                            (string-to-number year)))
+                                            (string-to-number year)) nil t)
               (cond ((eq calendar-date-style 'iso) "\\3 \\1 \\2") ; YMD
                     ((eq calendar-date-style 'european) "\\2 \\1 \\3") ; DMY
                     (t "\\1 \\2 \\3"))) ; MDY