For context, I'm writing an extension.
I need to check if a particular symbol is an autoload symbol, such that autoloadp
= t
.
After doing some digging I found that the defined autoloads in loaddefs.el
do not match up with every declared autoload in the repository.
Check these screenshots out for clarity:
As shown, symbol org-capture-string
is declared to be an autoload, which is accurately reflected in the loaddefs.el
file.
But symbols orgtbl-exp-regexp
and org-table-to-lisp
are also declared to be an autoload, which is inaccurately reflected in the loaddefs.el
file, since they are no where to be found.
What gives?
loaddefs.el
file in the most recent release? – John DeBord Aug 25 '21 at 08:07finder-inf.el
file.cl-macs
is clearly a built-in Emacs package, but it's no where to be found in thefinder-inf.el
file – John DeBord Aug 25 '21 at 09:11