Mercurial > emacs
changeset 94140:6436fd5155ce
(debug): Revert to bury-buffer since quit-window is not better anyway.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 18 Apr 2008 01:29:23 +0000 |
parents | 1e40bf35d15e |
children | e93898d6903e |
files | lisp/ChangeLog lisp/emacs-lisp/debug.el |
diffstat | 2 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Apr 17 20:09:54 2008 +0000 +++ b/lisp/ChangeLog Fri Apr 18 01:29:23 2008 +0000 @@ -1,3 +1,8 @@ +2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca> + + * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window + is not better anyway. + 2008-04-17 Stefan Monnier <monnier@iro.umontreal.ca> * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
--- a/lisp/emacs-lisp/debug.el Thu Apr 17 20:09:54 2008 +0000 +++ b/lisp/emacs-lisp/debug.el Fri Apr 18 01:29:23 2008 +0000 @@ -232,9 +232,10 @@ ;; 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)))