ox-publish: Fix "Invalid time specification" error with timestamps in DATE

* lisp/ox-publish.el (org-publish-find-date): Fix "Invalid time
  specification" error with timestamps in DATE.
This commit is contained in:
Nicolas Goaziou 2013-04-29 09:39:35 +02:00
parent 93da18174a
commit 1ce00aaffd
1 changed files with 4 additions and 1 deletions

View File

@ -829,7 +829,10 @@ modification time. Return time in `current-time' format."
(cond ((eq (org-element-type date) 'timestamp)
(org-time-string-to-time (org-element-interpret-data date)))
((let ((ts (and (consp date) (assq 'timestamp date))))
(and ts (org-string-nw-p (org-element-interpret-data ts)))))
(and ts
(let ((value (org-element-interpret-data ts)))
(and (org-string-nw-p value)
(org-time-string-to-time value))))))
((file-exists-p file) (nth 5 (file-attributes file)))
(t (error "No such file: \"%s\"" file)))))