Function: hypb:eval-debug
hypb:eval-debug is a byte-compiled function defined in hypb.el.
Signature
(hypb:eval-debug SEXP)
Documentation
Eval SEXP and on error, show a debug backtrace of the problem.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:eval-debug (sexp)
"Eval SEXP and on error, show a debug backtrace of the problem."
(let ((debug-on-error t)
(debug-on-quit t))
(eval sexp)))