diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-26 18:06:44 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-26 18:06:44 -0700 |
commit | 33017fafd17d722e82a268e9b272f27df261e09d (patch) | |
tree | 9c34640f09d51059804961d697ed9b07e19571d3 /doc/lispref/processes.texi | |
parent | caf8a9b2b301aba06735d403317b75b41df59bfe (diff) | |
parent | ed7bebbb489cf6f893fc35a2a6714b0d8e7e8a90 (diff) | |
download | emacs-33017fafd17d722e82a268e9b272f27df261e09d.tar.gz |
Merge from emacs-24; up to 2012-04-24T08:35:02Z!lekktu@gmail.com
Diffstat (limited to 'doc/lispref/processes.texi')
-rw-r--r-- | doc/lispref/processes.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index ea68cf9ce96..dbb939583a6 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -1073,7 +1073,7 @@ job-control shells won't work when a pipe is used. See @defun interrupt-process &optional process current-group This function interrupts the process @var{process} by sending the signal @code{SIGINT}. Outside of Emacs, typing the ``interrupt -character'' (normally @kbd{C-c} on some systems, and @code{DEL} on +character'' (normally @kbd{C-c} on some systems, and @key{DEL} on others) sends this signal. When the argument @var{current-group} is non-@code{nil}, you can think of this function as ``typing @kbd{C-c}'' on the terminal by which Emacs talks to the subprocess. @@ -1112,7 +1112,7 @@ it the signal @code{SIGCONT}. This presumes that @var{process} was stopped previously. @end defun -@defun signal-process process signal +@deffn Command signal-process process signal This function sends a signal to process @var{process}. The argument @var{signal} specifies which signal to send; it should be an integer, or a symbol whose name is a signal. @@ -1120,7 +1120,7 @@ or a symbol whose name is a signal. The @var{process} argument can be a system process @acronym{ID} (an integer); that allows you to send signals to processes that are not children of Emacs. @xref{System Processes}. -@end defun +@end deffn @node Output from Processes @section Receiving Output from Processes |