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

2013-06-08 Thread Haojun Bao
Thanks, sorry for not checking the latest version. On Sat, Jun 8, 2013 at 2:04 PM, Nick Dokos wrote: > Haojun Bao writes: > > > 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? > > You need to upgr

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

2013-06-07 Thread Nick Dokos
Haojun Bao writes: > 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? You need to upgrade to latest. Git blame says: , | $ git blame -L 1509,1511 lisp/ox-html.el | d574bf52 (Kodi Arfer 2013-05-30 15

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

2013-06-07 Thread Haojun Bao
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 wrote: > Haojun Bao writes: > > > The culprit code is the following: > > > > (when :time-stamp-file > > (form

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

2013-06-07 Thread Nick Dokos
Haojun Bao writes: > The culprit code is the following: > >   (when :time-stamp-file >     (format-time-string >      (concat "\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-fil

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

2013-06-07 Thread Haojun Bao
The culprit code is the following: (when :time-stamp-file (format-time-string (concat "\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-stam