Variable: org-element--string-cache

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

Value

#s(hash-table test equal)

Documentation

Hash table holding tag strings and todo keyword objects.

We use shared string storage to reduce memory footprint of the syntax tree.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defvar org-element--string-cache (make-hash-table :test #'equal)
  "Hash table holding tag strings and todo keyword objects.
We use shared string storage to reduce memory footprint of the syntax
tree.")