aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2005-12-15 21:21:43 +0000
committerNick Roberts2005-12-15 21:21:43 +0000
commitc962897d11f5dca4860fc78e1024cfe1809c6c54 (patch)
tree11d618660bfbcc2a390edaf422aed925b297f2ae
parent5df0c23b744c30be8d84fbfe967e0bec5f28cbd2 (diff)
downloademacs-c962897d11f5dca4860fc78e1024cfe1809c6c54.tar.gz
emacs-c962897d11f5dca4860fc78e1024cfe1809c6c54.zip
(gdb-many-windows): Echo new state in minibuffer.
-rw-r--r--lisp/progmodes/gdb-ui.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index db847b74cf5..002bae1b019 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -51,7 +51,8 @@
51;; annotations to GDB/MI. 51;; annotations to GDB/MI.
52 52
53;; This mode SHOULD WORK WITH GDB 5.0 onwards but you will NEED GDB 6.0 53;; This mode SHOULD WORK WITH GDB 5.0 onwards but you will NEED GDB 6.0
54;; onwards to use watch expressions. 54;; onwards to use watch expressions. It works best with GDB 6.4 where
55;; watch expressions will update more quickly.
55 56
56;;; Windows Platforms: 57;;; Windows Platforms:
57 58
@@ -2577,6 +2578,8 @@ With arg, display additional buffers iff arg is positive."
2577 (if (null arg) 2578 (if (null arg)
2578 (not gdb-many-windows) 2579 (not gdb-many-windows)
2579 (> (prefix-numeric-value arg) 0))) 2580 (> (prefix-numeric-value arg) 0)))
2581 (message (format "Display of other windows %sabled"
2582 (if gdb-many-windows "en" "dis")))
2580 (if (and gud-comint-buffer 2583 (if (and gud-comint-buffer
2581 (buffer-name gud-comint-buffer)) 2584 (buffer-name gud-comint-buffer))
2582 (condition-case nil 2585 (condition-case nil