Function: gdb-inferior-io-mode
gdb-inferior-io-mode is an interactive and byte-compiled function
defined in gdb-mi.el.gz.
Signature
(gdb-inferior-io-mode)
Documentation
Major mode for gdb inferior-io.
In addition to any hooks its parent mode comint-mode might have run,
this mode runs the hook gdb-inferior-io-mode-hook, as the final or
penultimate step during initialization.
C-c C-\ gdb-io-quit
C-c C-c gdb-io-interrupt
C-c C-d gdb-io-eof
C-c C-z gdb-io-stop
C-d gdb-io-eof
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
;; We want to use comint because it has various nifty and familiar features.
(define-derived-mode gdb-inferior-io-mode comint-mode "Inferior I/O"
"Major mode for gdb inferior-io."
:syntax-table nil :abbrev-table nil
(make-comint-in-buffer "gdb-inferior" (current-buffer) nil))