Function: org-publish-cache-get
org-publish-cache-get is a byte-compiled function defined in
ox-publish.el.gz.
Signature
(org-publish-cache-get KEY)
Documentation
Return the value stored in org-publish-cache for key KEY.
Return nil, if no value or nil is found. Raise an error if the cache does not exist.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-publish.el.gz
(defun org-publish-cache-get (key)
"Return the value stored in `org-publish-cache' for key KEY.
Return nil, if no value or nil is found. Raise an error if the
cache does not exist."
(unless org-publish-cache
(error "`org-publish-cache-get' called, but no cache present"))
(gethash key org-publish-cache))