Function: gud-goto-info
gud-goto-info is an interactive and byte-compiled function defined in
gud.el.gz.
Signature
(gud-goto-info)
Documentation
Go to relevant Emacs info node.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
;; Use existing Info buffer, if possible.
(defun gud-goto-info ()
"Go to relevant Emacs info node."
(interactive)
(info-other-window (if (eq gud-minor-mode 'gdbmi)
"(emacs)GDB Graphical Interface"
"(emacs)Debuggers")))