diff options
| author | Eli Zaretskii | 2019-04-19 15:59:49 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-04-19 15:59:49 +0300 |
| commit | 280dd6c49d46887f5c554c926119e277f347ca06 (patch) | |
| tree | 101d83f2f9dd9f8bc2a52bbf34f15ff9743d05c7 | |
| parent | 0eb47c2537ad73f9582df6b8cd9021e13feb9a4f (diff) | |
| download | emacs-280dd6c49d46887f5c554c926119e277f347ca06.tar.gz emacs-280dd6c49d46887f5c554c926119e277f347ca06.zip | |
; Minor improvement in documentation from recent commit
* doc/lispref/processes.texi (Asynchronous Processes): Say
explicitly that it's an error to pass non-nil value for
:stopped when starting a process. (Bug#30460)
| -rw-r--r-- | doc/lispref/processes.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 43009b35b2a..7eb136af5f1 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -678,10 +678,11 @@ 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} |
| 681 | @var{stopped} must be @code{nil}. The @code{:stop} key is ignored | 681 | If provided, @var{stopped} must be @code{nil}; it is an error to use |
| 682 | otherwise and is retained for compatibility with other process types | 682 | any non-@code{nil} value. The @code{:stop} key is ignored otherwise |
| 683 | such as pipe processes. Asynchronous subprocesses never start in the | 683 | and is retained for compatibility with other process types such as |
| 684 | stopped state. | 684 | pipe processes. Asynchronous subprocesses never start in the stopped |
| 685 | state. | ||
| 685 | 686 | ||
| 686 | @item :filter @var{filter} | 687 | @item :filter @var{filter} |
| 687 | Initialize the process filter to @var{filter}. If not specified, a | 688 | Initialize the process filter to @var{filter}. If not specified, a |