From 54da0dce2ac7a754d469eccf6d9661e93697fc68 Mon Sep 17 00:00:00 2001 From: David Maus Date: Fri, 14 May 2010 16:41:21 +0200 Subject: [PATCH] Use `make-hash-table' to create hash table of org-publish-cache. --- 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 7a2f3c369..c35e3f45c 100644 --- a/lisp/org-publish.el +++ b/lisp/org-publish.el @@ -937,7 +937,7 @@ and return it." (if cexists (load-file cache-file)) (unless org-publish-cache (setq org-publish-cache - #s(hash-table test equal weakness nil size 100 data ())) + (make-hash-table :test 'equal :weakness nil :size 100)) (org-publish-cache-set ":project:" project-name) (org-publish-cache-set ":cache-file:" cache-file org-publish-cache)) (unless cexists (org-publish-write-cache-file nil)))) -- 2.11.4.GIT