1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

; * lisp/subr.el (start-process-shell-command): Add missing period.

This commit is contained in:
Philipp Stephani 2021-12-11 19:33:50 +01:00
parent a81669c69f
commit d56b0b4e6b

View file

@ -4057,7 +4057,7 @@ BUFFER is the buffer (or buffer name) to associate with the process.
Process output goes at end of that buffer, unless you specify
an output stream or filter function to handle the output.
BUFFER may be also nil, meaning that this process is not associated
with any buffer
with any buffer.
COMMAND is the shell command to run."
;; We used to use `exec' to replace the shell with the command,
;; but that failed to handle (...) and semicolon, etc.