Variable: load-path-filter--cache
load-path-filter--cache is a variable defined in startup.el.gz.
Value
nil
Documentation
A cache used by load-path-filter-cache-directory-files.
The value is an alist. The car of each entry is a list of load suffixes,
such as returned by get-load-suffixes. The cdr of each entry is a
cons whose car is a regex matching those suffixes
at the end of a string, and whose cdr is a hash-table mapping directories
to files in those directories which end with one of the suffixes.
These can also be nil, in which case no filtering will happen.
The files named in the hash-table can be of any kind,
including subdirectories.
The hash-table uses equal as its key comparison function.
Source Code
;; Defined in /usr/src/emacs/lisp/startup.el.gz
(defvar load-path-filter--cache nil
"A cache used by `load-path-filter-cache-directory-files'.
The value is an alist. The car of each entry is a list of load suffixes,
such as returned by `get-load-suffixes'. The cdr of each entry is a
cons whose car is a regex matching those suffixes
at the end of a string, and whose cdr is a hash-table mapping directories
to files in those directories which end with one of the suffixes.
These can also be nil, in which case no filtering will happen.
The files named in the hash-table can be of any kind,
including subdirectories.
The hash-table uses `equal' as its key comparison function.")