Function: comint-continue-subjob
comint-continue-subjob is an interactive and byte-compiled function
defined in comint.el.gz.
Signature
(comint-continue-subjob)
Documentation
Send CONT signal to process buffer's process group.
Useful if you accidentally suspend the top-level process.
Probably introduced at or before Emacs version 19.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-continue-subjob ()
"Send CONT signal to process buffer's process group.
Useful if you accidentally suspend the top-level process."
(interactive nil comint-mode)
(continue-process nil comint-ptyp))