Function: hyperb:maybe-load-autoloads

hyperb:maybe-load-autoloads is a byte-compiled function defined in hload-path.el.

Signature

(hyperb:maybe-load-autoloads)

Documentation

Load Hyperbole autoload files that have not already been loaded.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hload-path.el
(defun hyperb:maybe-load-autoloads ()
  "Load Hyperbole autoload files that have not already been loaded."
  (let* ((default-directory hyperb:dir)
	 (hypb-autoloads (expand-file-name "hyperbole-autoloads.el"))
	 (kotl-autoloads (expand-file-name "kotl/kotl-autoloads.el")))
    (unless (featurep 'hyperbole-autoloads)
      (when (file-readable-p hypb-autoloads)
        (load hypb-autoloads nil t)))
    (unless (featurep 'kotl-autoloads)
      (when (file-readable-p kotl-autoloads)
        (load kotl-autoloads nil t)))))