Function: term-stop-subjob
term-stop-subjob is an interactive and byte-compiled function defined
in term.el.gz.
Signature
(term-stop-subjob)
Documentation
Stop the current subjob.
WARNING: if there is no current subjob, you can end up suspending
the top-level process running in the buffer. If you accidentally do
this, use M-x term-continue-subjob (term-continue-subjob) to resume the process. (This
is not a problem with most shells, since they ignore this signal.)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-stop-subjob ()
"Stop the current subjob.
WARNING: if there is no current subjob, you can end up suspending
the top-level process running in the buffer. If you accidentally do
this, use \\[term-continue-subjob] to resume the process. (This
is not a problem with most shells, since they ignore this signal.)"
(interactive)
(stop-process nil term-ptyp))