aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-04-18 01:29:23 +0000
committerStefan Monnier2008-04-18 01:29:23 +0000
commit1cb64239e72807c1244c83583880f1cd9548c4c2 (patch)
tree50509a35c7bda87ffed2a0e060466c40fd0d2a51
parent88bdb6c2e5553df50b622340a2b04ec2b8c637e3 (diff)
downloademacs-1cb64239e72807c1244c83583880f1cd9548c4c2.tar.gz
emacs-1cb64239e72807c1244c83583880f1cd9548c4c2.zip
(debug): Revert to bury-buffer since quit-window is not better anyway.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/debug.el7
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 03acc8b0d89..6a55132d423 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
4 is not better anyway.
5
12008-04-17 Stefan Monnier <monnier@iro.umontreal.ca> 62008-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * progmodes/python.el (python-mode-map): Use abbrev-table-menu. 8 * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
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."
232 ;; would need to be de-iconified anyway immediately 232 ;; would need to be de-iconified anyway immediately
233 ;; after when we re-enter the debugger, so iconifying it 233 ;; after when we re-enter the debugger, so iconifying it
234 ;; here would cause flashing. 234 ;; here would cause flashing.
235 ;; Use quit-window rather than bury-buffer to quieten 235 ;; Drew Adams is not happy with this: he wants to frame
236 ;; Drew Adams. --Stef 236 ;; to be left at the top-level, still working on how
237 (quit-window)))) 237 ;; best to do that.
238 (bury-buffer))))
238 (kill-buffer debugger-buffer)) 239 (kill-buffer debugger-buffer))
239 (with-timeout-unsuspend debugger-with-timeout-suspend) 240 (with-timeout-unsuspend debugger-with-timeout-suspend)
240 (set-match-data debugger-outer-match-data))) 241 (set-match-data debugger-outer-match-data)))