Variable: org-element-ignored-local-variables
org-element-ignored-local-variables is a variable defined in
org-element.el.gz.
Value
(org-font-lock-keywords org-element--cache org-element--cache-size
org-element--headline-cache
org-element--headline-cache-size
org-element--cache-hash-left
org-element--cache-hash-right
org-element--cache-sync-requests
org-element--cache-sync-timer
org-element--cache-sync-keys-value
org-element--cache-change-tic
org-element--cache-last-buffer-size
org-element--cache-diagnostics-ring
org-element--cache-diagnostics-ring-size
org-element--cache-gapless
org-element--cache-change-warning)
Documentation
List of variables not copied through upon Org buffer duplication.
Export process and parsing in org-element-parse-secondary-string
takes place on a copy of the original buffer. When this copy is
created, all Org related local variables not in this list are copied
to the new buffer. Variables with an unreadable value are also
ignored.
Aliases
org-export-ignored-local-variables (obsolete since Org 9.7)
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defconst org-element-ignored-local-variables
`( org-font-lock-keywords
,@org-element--cache-variables)
"List of variables not copied through upon Org buffer duplication.
Export process and parsing in `org-element-parse-secondary-string'
takes place on a copy of the original buffer. When this copy is
created, all Org related local variables not in this list are copied
to the new buffer. Variables with an unreadable value are also
ignored.")