Function: helpful--ensure-loaded

helpful--ensure-loaded is a byte-compiled function defined in helpful.el.

Signature

(helpful--ensure-loaded)

Documentation

Ensure the symbol associated with the current buffer has been loaded.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--ensure-loaded ()
  "Ensure the symbol associated with the current buffer has been loaded."
  (when (and helpful--callable-p
             (symbolp helpful--sym))
    (let ((fn-obj (symbol-function helpful--sym)))
      (when (autoloadp fn-obj)
        (autoload-do-load fn-obj)))))