summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Lundin <mdl@imapmail.org>2010-05-22 03:14:53 +0000
committerJohn Wiegley <johnw@newartisans.com>2010-05-26 14:11:04 -0600
commit4c6012f831e918dd74b498b18e37fc49410ad925 (patch)
treeb93e1acc873d657a9a55d0758976d06a233cf541
parent8c5f8a4d25591189bb1a4b6fd1db32d1d5b9a373 (diff)
downloadorg-mode-4c6012f831e918dd74b498b18e37fc49410ad925.tar.gz
Don't build org-refile-cache if org-refile-use-cache is nil
The function org-get-refile-targets was building org-refile-cache even if org-refile-use-cache was set to nil. This caused every refile attempt to call org-refile-cache-clear and to produce the message "Refile cache has been cleared."
-rw-r--r--lisp/org.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index d21aa1f..496eceb 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -9661,7 +9661,8 @@ on the system \"/user@host:\"."
(when (= (point) pos0)
;; verification function has not moved point
(goto-char (point-at-eol))))))))
- (org-refile-cache-put tgs (buffer-file-name) descre)
+ (when org-refile-use-cache
+ (org-refile-cache-put tgs (buffer-file-name) descre))
(setq targets (append tgs targets))
))))
(message "Getting targets...done")