Variable: gdb-enable-debug
gdb-enable-debug is a customizable variable defined in gdb-mi.el.gz.
Value
nil
Documentation
Non-nil if Gdb-Enable-Debug mode is enabled.
See the gdb-enable-debug(var)/gdb-enable-debug(fun) command
for a description of this minor mode.
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
;;;###autoload
(define-minor-mode gdb-enable-debug
"Toggle logging of transaction between Emacs and Gdb.
The log is stored in `gdb-debug-log' as an alist with elements
whose cons is send, send-item or recv and whose cdr is the string
being transferred. This list may grow up to a size of
`gdb-debug-log-max' after which the oldest element (at the end of
the list) is deleted every time a new one is added (at the front)."
:global t
:group 'gdb
:version "22.1")