Function: org-refile-cache-put
org-refile-cache-put is a byte-compiled function defined in
org-refile.el.gz.
Signature
(org-refile-cache-put SET &rest IDENTIFIERS)
Documentation
Push the refile targets SET into the cache, under IDENTIFIERS.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-refile.el.gz
(defun org-refile-cache-put (set &rest identifiers)
"Push the refile targets SET into the cache, under IDENTIFIERS."
(let* ((key (sha1 (prin1-to-string identifiers)))
(entry (assoc key org-refile-cache)))
(if entry
(setcdr entry set)
(push (cons key set) org-refile-cache))))