diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2005-12-15 21:21:43 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2005-12-15 21:21:43 +0000 |
commit | c962897d11f5dca4860fc78e1024cfe1809c6c54 (patch) | |
tree | 11d618660bfbcc2a390edaf422aed925b297f2ae /lisp/progmodes/gdb-ui.el | |
parent | 5df0c23b744c30be8d84fbfe967e0bec5f28cbd2 (diff) | |
download | emacs-c962897d11f5dca4860fc78e1024cfe1809c6c54.tar.gz |
(gdb-many-windows): Echo new state in minibuffer.
Diffstat (limited to 'lisp/progmodes/gdb-ui.el')
-rw-r--r-- | lisp/progmodes/gdb-ui.el | 5 |
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 @@ ;; annotations to GDB/MI. ;; This mode SHOULD WORK WITH GDB 5.0 onwards but you will NEED GDB 6.0 -;; onwards to use watch expressions. +;; onwards to use watch expressions. It works best with GDB 6.4 where +;; watch expressions will update more quickly. ;;; Windows Platforms: @@ -2577,6 +2578,8 @@ With arg, display additional buffers iff arg is positive." (if (null arg) (not gdb-many-windows) (> (prefix-numeric-value arg) 0))) + (message (format "Display of other windows %sabled" + (if gdb-many-windows "en" "dis"))) (if (and gud-comint-buffer (buffer-name gud-comint-buffer)) (condition-case nil |