Function: org-refile-cache-clear

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

Signature

(org-refile-cache-clear)

Documentation

Clear the refile cache and disable all the markers.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-refile.el.gz
(defun org-refile-cache-clear ()
  "Clear the refile cache and disable all the markers."
  (dolist (m org-refile-markers) (move-marker m nil))
  (setq org-refile-markers nil)
  (setq org-refile-cache nil)
  (message "Refile cache has been cleared"))