emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH 1/2] Use `make-hash-table' to create hash table of org-publish-cache.
@ 2010-05-14 14:56 David Maus
  0 siblings, 0 replies; only message in thread
From: David Maus @ 2010-05-14 14:56 UTC (permalink / raw)
  To: emacs-orgmode

---
 lisp/org-publish.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/org-publish.el b/lisp/org-publish.el
index 7a2f3c3..c35e3f4 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))))
-- 
1.7.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-05-14 14:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-14 14:56 [PATCH 1/2] Use `make-hash-table' to create hash table of org-publish-cache David Maus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).