Function: autoloadp
autoloadp is a byte-compiled function defined in subr.el.gz.
Signature
(autoloadp OBJECT)
Documentation
Non-nil if OBJECT is an autoload.
Probably introduced at or before Emacs version 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
;;;; Load history
(defsubst autoloadp (object)
"Non-nil if OBJECT is an autoload."
(eq 'autoload (car-safe object)))