0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-05 12:42:54 +00:00

Silence byte-compiler

This commit is contained in:
Nicolas Goaziou 2016-02-25 15:10:49 +01:00
parent 54b42f7e59
commit 642c50f0cb

View file

@ -11605,6 +11605,13 @@ on the system \"/user@host:\"."
org-refile-cache))))
(and set (org-refile-cache-check-set set) set)))))
(defvar org-outline-path-cache nil
"Alist between buffer positions and outline paths.
It value is an alist (POSITION . PATH) where POSITION is the
buffer position at the beginning of an entry and PATH is a list
of strings describing the outline path for that entry, in reverse
order.")
(defun org-refile-get-targets (&optional default-buffer excluded-entries)
"Produce a table with refile targets."
(let ((case-fold-search nil)
@ -11702,13 +11709,6 @@ on the system \"/user@host:\"."
(setq s (replace-match "\\" t t s)))
s)
(defvar org-outline-path-cache nil
"Alist between buffer positions and outline paths.
It value is an alist (POSITION . PATH) where POSITION is the
buffer position at the beginning of an entry and PATH is a list
of strings describing the outline path for that entry, in reverse
order.")
(defun org--get-outline-path-1 (&optional use-cache)
"Return outline path to current headline.