From ae61773c26ac5a49a01be88d1f25837dd85a45b6 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Wed, 9 Feb 2005 19:42:09 +0000 Subject: [PATCH] (gdb-ann3): Re-instate GDB command "set width 0" to prevent word wrapping problems (in particular, output from "info breakpoints"). --- lisp/progmodes/gdb-ui.el | 1 + 1 file changed, 1 insertion(+) 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 -- 2.39.5