summaryrefslogtreecommitdiff
path: root/lisp/progmodes/gdb-ui.el
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2005-02-09 19:42:09 +0000
committerNick Roberts <nickrob@snap.net.nz>2005-02-09 19:42:09 +0000
commitae61773c26ac5a49a01be88d1f25837dd85a45b6 (patch)
tree32b296d82b69ce6f8c84215ec8186a22a351fc0b /lisp/progmodes/gdb-ui.el
parent37956fd5e3cf6de646a85eb00de30cd504923f49 (diff)
downloademacs-ae61773c26ac5a49a01be88d1f25837dd85a45b6.tar.gz
emacs-ae61773c26ac5a49a01be88d1f25837dd85a45b6.tar.bz2
emacs-ae61773c26ac5a49a01be88d1f25837dd85a45b6.zip
(gdb-ann3): Re-instate GDB command "set
width 0" to prevent word wrapping problems (in particular, output from "info breakpoints").
Diffstat (limited to 'lisp/progmodes/gdb-ui.el')
-rw-r--r--lisp/progmodes/gdb-ui.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index 66740773165..97511376086 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -257,6 +257,7 @@ detailed description of this mode.
(if (eq window-system 'w32)
(gdb-enqueue-input (list "set new-console off\n" 'ignore)))
(gdb-enqueue-input (list "set height 0\n" 'ignore))
+ (gdb-enqueue-input (list "set width 0\n" 'ignore))
;; find source file and compilation directory here
(gdb-enqueue-input (list "server list main\n" 'ignore)) ; C program
(gdb-enqueue-input (list "server list MAIN__\n" 'ignore)) ; Fortran program