diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-02-27 02:26:05 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-02-27 02:26:05 +0000 |
commit | 3f4468ab4e79050bb1e40b675e1c6f1564cbe6f4 (patch) | |
tree | c796c96362c93bd94f0487fa7cd271bee720a670 /lisp/emacs-lisp | |
parent | 378d0f8e9027563fd667e90ae6d8f19a3576615d (diff) | |
download | emacs-3f4468ab4e79050bb1e40b675e1c6f1564cbe6f4.tar.gz emacs-3f4468ab4e79050bb1e40b675e1c6f1564cbe6f4.tar.bz2 emacs-3f4468ab4e79050bb1e40b675e1c6f1564cbe6f4.zip |
(debug): Put back the inhibit-trace.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/debug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 58616ff3076..1a6ed584548 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -189,7 +189,8 @@ first will be printed into the backtrace buffer." (backtrace-debug 3 t)) (debugger-reenable) (message "") - (let ((standard-output nil) + (let ((inhibit-trace t) + (standard-output nil) (buffer-read-only t)) (message "") ;; Make sure we unbind buffer-read-only in the right buffer. |