Function: org-refile-cache-get

org-refile-cache-get is a byte-compiled function defined in org-refile.el.gz.

Signature

(org-refile-cache-get &rest IDENTIFIERS)

Documentation

Retrieve the cached value for refile targets given by IDENTIFIERS.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-refile.el.gz
(defun org-refile-cache-get (&rest identifiers)
  "Retrieve the cached value for refile targets given by IDENTIFIERS."
  (cond
   ((not org-refile-cache) nil)
   ((not org-refile-use-cache) (org-refile-cache-clear) nil)
   (t
    (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
			   org-refile-cache))))
      (and set (org-refile-cache-check-set set) set)))))