diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2023-11-30 14:37:40 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2023-11-30 14:37:40 +0100 |
commit | 4774a3abb4be3068e0308820c73b71c2a924fb21 (patch) | |
tree | 7e30e1c281cdb5269e6dcf481281505c1f86d7a0 /doc | |
parent | ab126284081cd1f6a3317dc1e94636bf17af2375 (diff) | |
download | emacs-4774a3abb4be3068e0308820c73b71c2a924fb21.tar.gz emacs-4774a3abb4be3068e0308820c73b71c2a924fb21.tar.bz2 emacs-4774a3abb4be3068e0308820c73b71c2a924fb21.zip |
Document, that PROCESS of signal-process can be a string
* doc/lispref/processes.texi (Signals to Processes) [signal-process]:
* src/process.c (Fsignal_process): Document, that PROCESS can be a
string.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lispref/processes.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index e1398749005..b3ba58ec643 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -1497,6 +1497,9 @@ If @var{process} is a process object which contains the property @code{remote-pid}, or @var{process} is a number and @var{remote} is a remote file name, @var{process} is interpreted as process on the respective remote host, which will be the process to signal. + +If @var{process} is a string, it is interpreted as process object with +the respective process name, or as a number. @end deffn Sometimes, it is necessary to send a signal to a non-local |