]> git.eshelyaron.com Git - emacs.git/commitdiff
Document, that PROCESS of signal-process can be a string
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 30 Nov 2023 13:37:40 +0000 (14:37 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 30 Nov 2023 13:37:40 +0000 (14:37 +0100)
* doc/lispref/processes.texi (Signals to Processes) [signal-process]:
* src/process.c (Fsignal_process): Document, that PROCESS can be a
string.

doc/lispref/processes.texi
src/process.c

index e139874900521f667f5f2c6c2f78532f1997ee27..b3ba58ec643467e790f636c2c5f1ee44c9eae566 100644 (file)
@@ -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
index 46e57c1a7c21c562dcd33d25e94c44719b3dca03..4ee742c6cef4326ec2632c9637b3dffae1bb529c 100644 (file)
@@ -7185,6 +7185,8 @@ If PROCESS is a process object which contains the property
 `remote-pid', or PROCESS is a number and REMOTE is a remote file name,
 PROCESS is interpreted as process on the respective remote host, which
 will be the process to signal.
+If PROCESS is a string, it is interpreted as process object with the
+respective process name, or as a number.
 SIGCODE may be an integer, or a symbol whose name is a signal name.  */)
   (Lisp_Object process, Lisp_Object sigcode, Lisp_Object remote)
 {