From 1f7cf667c995ea2d49bb1b02aed44ad29227f692 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Tue, 8 Jul 2008 06:38:38 -0700 Subject: [PATCH] Fix typo in function call in org-publish. Patch by Bernt Hansen. --- lisp/org-publish.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-publish.el b/lisp/org-publish.el index f7dbf19ab..26eee4dcb 100644 --- a/lisp/org-publish.el +++ b/lisp/org-publish.el @@ -297,7 +297,7 @@ If functions in this hook modify the buffer, it will be saved." (defun org-publish-timestamp-filename (filename) "Return path to timestamp file for filename FILENAME." - (concat (file-name-as-direcory org-publish-timestamp-directory) + (concat (file-name-as-directory org-publish-timestamp-directory) "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename)))) (defun org-publish-needed-p (filename) -- 2.11.4.GIT