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