Variable: gdb-many-windows
gdb-many-windows is a customizable variable defined in gdb-mi.el.gz.
Value
nil
Documentation
Non-nil if Gdb-Many-Windows mode is enabled.
See the gdb-many-windows(var)/gdb-many-windows(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function gdb-many-windows(var)/gdb-many-windows(fun).
This variable was added, or its default value changed, in Emacs 22.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(define-minor-mode gdb-many-windows
"If nil just pop up the GUD buffer unless `gdb-show-main' is t.
In this case it starts with two windows: one displaying the GUD
buffer and the other with the source file with the main routine
of the debugged program. Non-nil means display the layout shown for
`gdb'."
:global t
:group 'gdb
:version "22.1"
(if (and gud-comint-buffer
(buffer-name gud-comint-buffer))
(ignore-errors
(gdb-restore-windows))))