Variable: org-trust-scanner-tags
org-trust-scanner-tags is a variable defined in org.el.gz.
Value
nil
Documentation
Should org-get-tags use the tags for the scanner.
This is for internal dynamical scoping only.
When this is non-nil, the function org-get-tags will return the value
of org-scanner-tags instead of building the list by itself. This
can lead to large speed-ups when the tags scanner is used in a file with
many entries, and when the list of tags is retrieved, for example to
obtain a list of properties. Building the tags list for each entry in such
a file becomes an N^2 operation - but with this variable set, it scales
as N.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defvar org-trust-scanner-tags nil
"Should `org-get-tags' use the tags for the scanner.
This is for internal dynamical scoping only.
When this is non-nil, the function `org-get-tags' will return the value
of `org-scanner-tags' instead of building the list by itself. This
can lead to large speed-ups when the tags scanner is used in a file with
many entries, and when the list of tags is retrieved, for example to
obtain a list of properties. Building the tags list for each entry in such
a file becomes an N^2 operation - but with this variable set, it scales
as N.")