Function: help-fns--autoloaded-p

help-fns--autoloaded-p is a byte-compiled function defined in help-fns.el.gz.

Signature

(help-fns--autoloaded-p FUNCTION)

Documentation

Return non-nil if FUNCTION has previously been autoloaded.

Source Code

;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
;; We could use `symbol-file' but this is a wee bit more efficient.
(defun help-fns--autoloaded-p (function)
  "Return non-nil if FUNCTION has previously been autoloaded."
  (seq-some #'autoloadp (get function 'function-history)))