diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8cb67c0e9..a7340c052 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,8 @@ * org-exp.el (org-export-html-style-default): Automatic overflow handling for pre fields. + (org-export-as-ascii, org-export-as-html): Change default format + for time stamp. * org-table.el (org-table-export): Offer completion for translator functions, and do not require a heading above the table. diff --git a/lisp/org-exp.el b/lisp/org-exp.el index c2b99b504..de2e42df2 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -2146,7 +2146,7 @@ underlined headlines. The default is 3." ((and date (string-match "%" date)) (setq date (format-time-string date))) (date) - (t (setq date (format-time-string "%Y/%m/%d %X")))) + (t (setq date (format-time-string "%Y-%m-%d %T %Z")))) (if (and date org-export-time-stamp-file) (insert (concat (nth 2 lang-words) ": " date"\n"))) @@ -2786,7 +2786,7 @@ PUB-DIR is set, use this as the publishing directory." ((and date (string-match "%" date)) (setq date (format-time-string date))) (date) - (t (setq date (format-time-string "%Y/%m/%d %X")))) + (t (setq date (format-time-string "%Y-%m-%d %T %Z")))) ;; Get the language-dependent settings (setq lang-words (or (assoc language org-export-language-setup)