branch: externals/org
commit bfc859fedf6c5dfd9363538bdd00db5650114725
Author: Kyle Meyer <[email protected]>
Commit: Kyle Meyer <[email protected]>
org-cycle: Silence byte-compiler under 'make single'
These are warnings that would show up when these changes made their
way to the Emacs repo.
---
lisp/org-cycle.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lisp/org-cycle.el b/lisp/org-cycle.el
index 14388caaf1..c06af06d95 100644
--- a/lisp/org-cycle.el
+++ b/lisp/org-cycle.el
@@ -39,11 +39,14 @@
(declare-function org-element-property "org-element" (property element))
(declare-function org-element-lineage "org-element" (datum &optional types
with-self))
(declare-function org-element-at-point "org-element" (&optional pom
cached-only))
+(declare-function org-display-inline-images "org" (&optional include-linked
refresh beg end))
(declare-function org-get-tags "org" (&optional pos local fontify))
(declare-function org-subtree-end-visible-p "org" ())
(declare-function org-narrow-to-subtree "org" (&optional element))
+(declare-function org-next-visible-heading "org" (arg))
(declare-function org-at-property-p "org" ())
(declare-function org-re-property "org" (property &optional literal allow-null
value))
+(declare-function org-remove-inline-images "org" (&optional beg end))
(declare-function org-item-beginning-re "org" ())
(declare-function org-at-heading-p "org" (&optional invisible-not-ok))
(declare-function org-at-item-p "org" ())