summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-12-23 00:05:22 -0500
committerKyle Meyer <kyle@kyleam.com>2020-12-23 00:05:39 -0500
commitd631a51e014c62b8fe284767e6abf7ac46e7f110 (patch)
tree63e56b6628921ad044f84f519c22fc57b02dc785
parent86184e2cb6f05e65f05bc61bb87969c8f4d56b47 (diff)
downloadorg-mode-d631a51e014c62b8fe284767e6abf7ac46e7f110.tar.gz
org-attach: Silence byte-compiler
de6d90224 (org-attach: Consider inlinetasks when calculating attach dir, 2020-12-17) introduced a call to org-inlinetask-goto-beginning and org-inlinetask-in-task-p, each behind a featurep guard.
-rw-r--r--lisp/org-attach.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/org-attach.el b/lisp/org-attach.el
index d117bdd..cd8c845 100644
--- a/lisp/org-attach.el
+++ b/lisp/org-attach.el
@@ -42,6 +42,8 @@
(declare-function dired-dwim-target-directory "dired-aux")
(declare-function org-element-property "org-element" (property element))
(declare-function org-element-type "org-element" (element))
+(declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
+(declare-function org-inlinetask-in-task-p "org-inlinetask" ())
(defgroup org-attach nil
"Options concerning attachments in Org mode."