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)
  (if (eq gud-minor-mode 'gdbmi)
      (info-other-window "(emacs)GDB Graphical Interface")
    (info-other-window "(emacs)Debuggers")))