diff options
| author | Nick Roberts | 2005-02-09 19:42:09 +0000 |
|---|---|---|
| committer | Nick Roberts | 2005-02-09 19:42:09 +0000 |
| commit | ae61773c26ac5a49a01be88d1f25837dd85a45b6 (patch) | |
| tree | 32b296d82b69ce6f8c84215ec8186a22a351fc0b | |
| parent | 37956fd5e3cf6de646a85eb00de30cd504923f49 (diff) | |
| download | emacs-ae61773c26ac5a49a01be88d1f25837dd85a45b6.tar.gz emacs-ae61773c26ac5a49a01be88d1f25837dd85a45b6.zip | |
(gdb-ann3): Re-instate GDB command "set
width 0" to prevent word wrapping problems
(in particular, output from "info breakpoints").
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 1 |
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. | |||
| 257 | (if (eq window-system 'w32) | 257 | (if (eq window-system 'w32) |
| 258 | (gdb-enqueue-input (list "set new-console off\n" 'ignore))) | 258 | (gdb-enqueue-input (list "set new-console off\n" 'ignore))) |
| 259 | (gdb-enqueue-input (list "set height 0\n" 'ignore)) | 259 | (gdb-enqueue-input (list "set height 0\n" 'ignore)) |
| 260 | (gdb-enqueue-input (list "set width 0\n" 'ignore)) | ||
| 260 | ;; find source file and compilation directory here | 261 | ;; find source file and compilation directory here |
| 261 | (gdb-enqueue-input (list "server list main\n" 'ignore)) ; C program | 262 | (gdb-enqueue-input (list "server list main\n" 'ignore)) ; C program |
| 262 | (gdb-enqueue-input (list "server list MAIN__\n" 'ignore)) ; Fortran program | 263 | (gdb-enqueue-input (list "server list MAIN__\n" 'ignore)) ; Fortran program |