[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#12957: 24.2.50; unable to get elisp backtrace with (setq debug-on-er
From: |
Stefan Monnier |
Subject: |
bug#12957: 24.2.50; unable to get elisp backtrace with (setq debug-on-error t) |
Date: |
Thu, 22 Nov 2012 23:00:10 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) |
> No, even if I set debug-on-error to t explicitly, I see the
> problem. My guess (baseless though) was some package that I load from
> .emacs is fooling debugger.
Actually now that I think about it, the way recursive debugging is
prevented is not by setting debug-on-error to nil (as it used to be) but
by setting inhibit-debugger to t (this is a fairly recent change), so
try (setq inhibit-debugger nil).
Stefan