aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPhilipp Stephani2019-04-19 13:03:40 +0200
committerPhilipp Stephani2019-04-19 14:03:16 +0200
commit5c5e309527e6b582e2c04b83e7af45f3144863ac (patch)
tree0a19797e7e67663915d95b72ea5452c80b5dc552 /doc
parent3ff7d7321ac62b1eb896e8a032e7f75f5a6b8146 (diff)
downloademacs-5c5e309527e6b582e2c04b83e7af45f3144863ac.tar.gz
emacs-5c5e309527e6b582e2c04b83e7af45f3144863ac.zip
Remove :stop key from make-process.
This has never worked and caused issues such as Bug#30460. * src/process.c (Fmake_process): Don't accept :stop key any more. (syms_of_process): Define needed symbol 'null'. * test/src/process-tests.el (make-process/stop): New unit test. * doc/lispref/processes.texi (Asynchronous Processes): Remove :stop key from manual.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/processes.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index 6be311b5639..43009b35b2a 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -678,7 +678,9 @@ Initialize the process query flag to @var{query-flag}.
678@xref{Query Before Exit}. 678@xref{Query Before Exit}.
679 679
680@item :stop @var{stopped} 680@item :stop @var{stopped}
681If @var{stopped} is non-@code{nil}, start the process in the 681@var{stopped} must be @code{nil}. The @code{:stop} key is ignored
682otherwise and is retained for compatibility with other process types
683such as pipe processes. Asynchronous subprocesses never start in the
682stopped state. 684stopped state.
683 685
684@item :filter @var{filter} 686@item :filter @var{filter}