Function: hypb:package-el-install

hypb:package-el-install is a byte-compiled function defined in hypb.el.

Signature

(hypb:package-el-install PACKAGE)

Documentation

Install PACKAGE using the default package manager package.el.

If hypb:ask-to-install-package-flag is non-nil query user if package should be installed.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hypb.el
(defun hypb:package-el-install (package)
  "Install PACKAGE using the default package manager `package.el'.
If `hypb:ask-to-install-package-flag' is non-nil query user if package should
be installed."
  (when (or (not hypb:ask-to-install-package-flag)
            (y-or-n-p (format "Install `%s' to enable this feature? " package)))
    (package-install package)
    (require package)))