Function: gud-call

gud-call is a byte-compiled function defined in gud.el.gz.

Signature

(gud-call FMT &optional ARG)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defun gud-call (fmt &optional arg)
  (let ((msg (gud-format-command fmt arg)))
    (message "Command: %s" msg)
    (sit-for 0)
    (gud-basic-call msg)))