Variable: org-element--cache

org-element--cache is a buffer-local variable defined in org-element.el.gz.

Documentation

AVL tree used to cache elements.

Each node of the tree contains an element. Comparison is done with org-element--cache-compare. This cache is used in org-element-at-point.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
;;;; Data Structure

(defvar-local org-element--cache nil
  "AVL tree used to cache elements.
Each node of the tree contains an element.  Comparison is done
with `org-element--cache-compare'.  This cache is used in
`org-element-at-point'.")