]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/subr.el (start-process-shell-command): Add missing period.
authorPhilipp Stephani <phst@google.com>
Sat, 11 Dec 2021 18:33:50 +0000 (19:33 +0100)
committerPhilipp Stephani <phst@google.com>
Sat, 11 Dec 2021 18:40:55 +0000 (19:40 +0100)
lisp/subr.el

index d224f761e1f887c8be0f4bf85eaab0efbb452180..9c07606100b536926079948b96d21f3d24660072 100644 (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.