diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-18 01:29:23 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-18 01:29:23 +0000 |
commit | 1cb64239e72807c1244c83583880f1cd9548c4c2 (patch) | |
tree | 50509a35c7bda87ffed2a0e060466c40fd0d2a51 /lisp/emacs-lisp/debug.el | |
parent | 88bdb6c2e5553df50b622340a2b04ec2b8c637e3 (diff) | |
download | emacs-1cb64239e72807c1244c83583880f1cd9548c4c2.tar.gz emacs-1cb64239e72807c1244c83583880f1cd9548c4c2.tar.bz2 emacs-1cb64239e72807c1244c83583880f1cd9548c4c2.zip |
(debug): Revert to bury-buffer since quit-window is not better anyway.
Diffstat (limited to 'lisp/emacs-lisp/debug.el')
-rw-r--r-- | lisp/emacs-lisp/debug.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 2f650a7cf10..3d2dcf59d4a 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -232,9 +232,10 @@ first will be printed into the backtrace buffer." ;; would need to be de-iconified anyway immediately ;; after when we re-enter the debugger, so iconifying it ;; here would cause flashing. - ;; Use quit-window rather than bury-buffer to quieten - ;; Drew Adams. --Stef - (quit-window)))) + ;; Drew Adams is not happy with this: he wants to frame + ;; to be left at the top-level, still working on how + ;; best to do that. + (bury-buffer)))) (kill-buffer debugger-buffer)) (with-timeout-unsuspend debugger-with-timeout-suspend) (set-match-data debugger-outer-match-data))) |