aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Stephani2021-12-11 19:33:50 +0100
committerPhilipp Stephani2021-12-11 19:40:55 +0100
commitd56b0b4e6b5be1c27d7f3667bc3caaa63269d465 (patch)
tree2d6e5be5186df3ee83e859eb74a0ca9792be1e3d
parenta81669c69fda1a2d0d4238b8440145fb2aeb959f (diff)
downloademacs-d56b0b4e6b5be1c27d7f3667bc3caaa63269d465.tar.gz
emacs-d56b0b4e6b5be1c27d7f3667bc3caaa63269d465.zip
; * lisp/subr.el (start-process-shell-command): Add missing period.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index d224f761e1f..9c07606100b 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -4057,7 +4057,7 @@ BUFFER is the buffer (or buffer name) to associate with the process.
4057 Process output goes at end of that buffer, unless you specify 4057 Process output goes at end of that buffer, unless you specify
4058 an output stream or filter function to handle the output. 4058 an output stream or filter function to handle the output.
4059 BUFFER may be also nil, meaning that this process is not associated 4059 BUFFER may be also nil, meaning that this process is not associated
4060 with any buffer 4060 with any buffer.
4061COMMAND is the shell command to run." 4061COMMAND is the shell command to run."
4062 ;; We used to use `exec' to replace the shell with the command, 4062 ;; We used to use `exec' to replace the shell with the command,
4063 ;; but that failed to handle (...) and semicolon, etc. 4063 ;; but that failed to handle (...) and semicolon, etc.