Function: org-element--cache-interrupt-p
org-element--cache-interrupt-p is a byte-compiled function defined in
org-element.el.gz.
Signature
(org-element--cache-interrupt-p TIME-LIMIT)
Documentation
Non-nil when synchronization process should be interrupted.
TIME-LIMIT is a time value or nil.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defsubst org-element--cache-interrupt-p (time-limit)
"Non-nil when synchronization process should be interrupted.
TIME-LIMIT is a time value or nil."
(and time-limit
(or (input-pending-p)
(time-less-p time-limit nil))))