Function: hypb:debug
hypb:debug is an interactive and byte-compiled function defined in
hypb.el.
Signature
(hypb:debug)
Documentation
Load Hyperbole hbut.el source file and set debugging traceback flag.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:debug ()
"Load Hyperbole hbut.el source file and set debugging traceback flag."
(interactive)
(or (featurep 'hinit) (load "hyperbole"))
(or (and (featurep 'hbut)
(let ((func (hypb:indirect-function 'ebut:create)))
(not (or (subrp func)
(byte-code-function-p func)
(eq 'byte-code
(car (car (nthcdr 3 (hypb:indirect-function
'ebut:create)))))))))
(load "hbut.el"))
(setq debug-on-error t))