Function: autoloadp

autoloadp is a byte-compiled function defined in subr.el.gz.

Signature

(autoloadp OBJECT)

Documentation

Non-nil if OBJECT is an autoload.

View in manual

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."
  (declare (side-effect-free error-free))
  (eq 'autoload (car-safe object)))