bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#55863: 29.0.50; [PATCH] Avoid hanging chad of *Backtrace*


From: dick
Subject: bug#55863: 29.0.50; [PATCH] Avoid hanging chad of *Backtrace*
Date: Thu, 09 Jun 2022 09:51:05 -0400
User-agent: Gnus/5.14 (Gnus v5.14) Commercial/29.0.50 (gnu/linux)

(let ((pop-after (lambda (&rest _args) (throw 'here t))))
  (unwind-protect
      (catch 'here
        (add-function :after (symbol-function 'pop-to-buffer) pop-after)
        (debug))
    (remove-function (symbol-function 'pop-to-buffer) pop-after))
  (cl-assert (not (get-buffer "*Backtrace*"))))

OR

(let ((debug-on-error t))
  (error "No chads please."))

Then type "q", "C-x C-b", and note the empty lurker *Backtrace*.

Apparently I'm the only one irked by this recurring bugaboo.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]