From f3ba879079f2c5da7562908a7a068ab21acc78cb Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Thu, 30 May 2013 15:19:57 -0400 Subject: [PATCH] ox-html: Fix handling of time-stamp-file * lisp/ox-html.el (org-html--build-meta-info): Insert no timestamp when :time-stamp-file is nil. TINYCHANGE --- lisp/ox-html.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 370c0f75d..40ada6f3b 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -1420,10 +1420,9 @@ INFO is a plist used as a communication channel." (keywords (plist-get info :keywords))) (concat (format "%s\n" title) - (format - (when :time-stamp-file - (format-time-string - (concat "\n")))) + (when (plist-get info :time-stamp-file) + (format-time-string + (concat "\n"))) (format "\n" (or (and org-html-coding-system