Function: custom-autoload
custom-autoload is a byte-compiled function defined in custom.el.gz.
Signature
(custom-autoload SYMBOL LOAD &optional NOSET)
Documentation
Mark SYMBOL as autoloaded custom variable and add dependency LOAD.
If NOSET is non-nil, don't bother autoloading LOAD when setting the variable.
Source Code
;; Defined in /usr/src/emacs/lisp/custom.el.gz
(defun custom-autoload (symbol load &optional noset)
"Mark SYMBOL as autoloaded custom variable and add dependency LOAD.
If NOSET is non-nil, don't bother autoloading LOAD when setting the variable."
(put symbol 'custom-autoload (if noset 'noset t))
(custom-add-load symbol load))