org-e-publish: Fix code typo

* contrib/lisp/org-e-publish.el (org-e-publish-cache-ctime-of-src):
  Fix code typo.
This commit is contained in:
Nicolas Goaziou 2012-08-12 00:50:26 +02:00
parent 8fc893a036
commit a270c7dd90

View file

@ -1187,7 +1187,7 @@ Returns value on success, else nil."
(error "`org-e-publish-cache-set' called, but no cache present"))
(puthash key value org-e-publish-cache))
(defun org-publish-cache-ctime-of-src (f base-dir)
(defun org-e-publish-cache-ctime-of-src (f base-dir)
"Get the FILENAME ctime as an integer."
(let ((attr (file-attributes
(expand-file-name (or (file-symlink-p f) f) base-dir))))