diff options
| author | Glenn Morris | 2013-05-11 18:34:30 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-05-11 18:34:30 -0700 |
| commit | 472a3834deff659bbd78f49020c2b8aa6dd0ff9c (patch) | |
| tree | f06ecd5424520272b53dcac7524332af356116d0 | |
| parent | 0060ac73c0c2e67f4780909ed9b9600f85de4baf (diff) | |
| download | emacs-472a3834deff659bbd78f49020c2b8aa6dd0ff9c.tar.gz emacs-472a3834deff659bbd78f49020c2b8aa6dd0ff9c.zip | |
* diary-lib.el (diary-outlook-format-1): Don't include dayname in the output.
Fixes: debbugs:14349
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calendar/diary-lib.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cc1703b2ca9..6d82c799ca0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-05-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * calendar/diary-lib.el (diary-outlook-format-1): | ||
| 4 | Don't include dayname in the output. (Bug#14349) | ||
| 5 | |||
| 1 | 2013-05-11 Glenn Morris <rgm@gnu.org> | 6 | 2013-05-11 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix. | 8 | * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix. |
diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index 2cc381122b7..7be44b4083e 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el | |||
| @@ -366,7 +366,7 @@ Returns a string using match elements 1-5, where: | |||
| 366 | ;; use the standard function calendar-date-string. | 366 | ;; use the standard function calendar-date-string. |
| 367 | (concat (if month | 367 | (concat (if month |
| 368 | (calendar-date-string (list month (string-to-number day) | 368 | (calendar-date-string (list month (string-to-number day) |
| 369 | (string-to-number year))) | 369 | (string-to-number year)) nil t) |
| 370 | (cond ((eq calendar-date-style 'iso) "\\3 \\1 \\2") ; YMD | 370 | (cond ((eq calendar-date-style 'iso) "\\3 \\1 \\2") ; YMD |
| 371 | ((eq calendar-date-style 'european) "\\2 \\1 \\3") ; DMY | 371 | ((eq calendar-date-style 'european) "\\2 \\1 \\3") ; DMY |
| 372 | (t "\\1 \\2 \\3"))) ; MDY | 372 | (t "\\1 \\2 \\3"))) ; MDY |