emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] bug(?) ox-html always add a timestamp in comment which can't be


From: Haojun Bao
Subject: Re: [O] bug(?) ox-html always add a timestamp in comment which can't be customized away
Date: Sat, 8 Jun 2013 13:46:55 +0800

Just checked, it is the same tag (release_8.0.3), there is no change like in your code.

Could you please run git blame on those lines?


On Sat, Jun 8, 2013 at 1:30 PM, Nick Dokos <address@hidden> wrote:
Haojun Bao <address@hidden> writes:

> The culprit code is the following:
>
>   (when :time-stamp-file
>     (format-time-string
>      (concat "<!-- " org-html-metadata-timestamp-format " -->\n")))
>
> This `when' condition is always true, because :time-stamp-file is a
> keyword and always eval to itself, never to nil.
>
> So I think org-export-time-stamp-file should be used instead of
> :time-stamp-file.
>

What version are you using? In the version I have, the code looks like
this:

     (when (plist-get info :time-stamp-file)
       (format-time-string
         (concat "<!-- " org-html-metadata-timestamp-format " -->\n")))

Org-mode version 8.0.3 (release_8.0.3-197-g221768)
[nb: this version includes a few local commits (irrelevant to this subject)]
--
Nick




reply via email to

[Prev in Thread] Current Thread [Next in Thread]