|
@@ -151,9 +151,11 @@ Stars are put in group 1 and the trimmed body in group 2.")
|
|
|
(declare-function org-columns-insert-dblock "org-colview" ())
|
|
|
(declare-function org-duration-from-minutes "org-duration" (minutes &optional fmt canonical))
|
|
|
(declare-function org-duration-to-minutes "org-duration" (duration &optional canonical))
|
|
|
-(declare-function org-element-at-point "org-element" ())
|
|
|
+(declare-function org-element-at-point "org-element" (&optional pom cached-only))
|
|
|
+(declare-function org-element-at-point-no-context "org-element" (&optional pom))
|
|
|
(declare-function org-element-cache-refresh "org-element" (pos))
|
|
|
(declare-function org-element-cache-reset "org-element" (&optional all))
|
|
|
+(declare-function org-element-cache-map "org-element" (func &rest keys))
|
|
|
(declare-function org-element-contents "org-element" (element))
|
|
|
(declare-function org-element-context "org-element" (&optional element))
|
|
|
(declare-function org-element-copy "org-element" (datum))
|
|
@@ -161,6 +163,7 @@ Stars are put in group 1 and the trimmed body in group 2.")
|
|
|
(declare-function org-element-extract-element "org-element" (element))
|
|
|
(declare-function org-element-insert-before "org-element" (element location))
|
|
|
(declare-function org-element-interpret-data "org-element" (data))
|
|
|
+(declare-function org-element-keyword-parser "org-element" (limit affiliated))
|
|
|
(declare-function org-element-lineage "org-element" (blob &optional types with-self))
|
|
|
(declare-function org-element-link-parser "org-element" ())
|
|
|
(declare-function org-element-map "org-element" (data types fun &optional info first-match no-recursion with-affiliated))
|
|
@@ -173,6 +176,7 @@ Stars are put in group 1 and the trimmed body in group 2.")
|
|
|
(declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
|
|
|
(declare-function org-element-timestamp-parser "org-element" ())
|
|
|
(declare-function org-element-type "org-element" (element))
|
|
|
+(declare-function org-element--cache-active-p "org-element" ())
|
|
|
(declare-function org-export-dispatch "ox" (&optional arg))
|
|
|
(declare-function org-export-get-backend "ox" (name))
|
|
|
(declare-function org-export-get-environment "ox" (&optional backend subtreep ext-plist))
|
|
@@ -187,6 +191,7 @@ Stars are put in group 1 and the trimmed body in group 2.")
|
|
|
(declare-function org-latex-make-preamble "ox-latex" (info &optional template snippet?))
|
|
|
(declare-function org-num-mode "org-num" (&optional arg))
|
|
|
(declare-function org-plot/gnuplot "org-plot" (&optional params))
|
|
|
+(declare-function org-persist-read "org-persist" (var &optional buffer))
|
|
|
(declare-function org-tags-view "org-agenda" (&optional todo-only match))
|
|
|
(declare-function org-timer "org-timer" (&optional restart no-insert))
|
|
|
(declare-function org-timer-item "org-timer" (&optional arg))
|
|
@@ -197,6 +202,7 @@ Stars are put in group 1 and the trimmed body in group 2.")
|
|
|
(declare-function org-toggle-archive-tag "org-archive" (&optional find-done))
|
|
|
(declare-function org-update-radio-target-regexp "ol" ())
|
|
|
|
|
|
+(defvar org-agenda-buffer-name)
|
|
|
(defvar org-element-paragraph-separate)
|
|
|
(defvar org-indent-indentation-per-level)
|
|
|
(defvar org-radio-target-regexp)
|
|
@@ -3830,7 +3836,7 @@ This is needed for font-lock setup.")
|
|
|
"org-agenda"
|
|
|
(beg end))
|
|
|
(declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
|
|
|
-(declare-function org-agenda-skip "org-agenda" ())
|
|
|
+(declare-function org-agenda-skip "org-agenda" (&optional element))
|
|
|
(declare-function org-attach-expand "org-attach" (file))
|
|
|
(declare-function org-attach-reveal "org-attach" ())
|
|
|
(declare-function org-attach-reveal-in-emacs "org-attach" ())
|
|
@@ -4812,6 +4818,8 @@ This is for getting out of special buffers like capture.")
|
|
|
;; babel
|
|
|
(require 'ob)
|
|
|
|
|
|
+(defvar org-element-cache-persistent); Defined in org-element.el
|
|
|
+(defvar org-element-use-cache); Defined in org-element.el
|
|
|
;;;###autoload
|
|
|
(define-derived-mode org-mode outline-mode "Org"
|
|
|
"Outline-based notes management and organizer, alias
|