diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-09-23 09:09:03 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-09-23 09:09:03 +0300 |
commit | 476933b2356f04effdeffde59dad5d15bb46bacd (patch) | |
tree | 4cb0a100f391b5ba92ccdcf5a0c24b0d5a280303 /lisp/simple.el | |
parent | e27ec0e41442067e88d58459fbc9814429f1d3dc (diff) | |
download | emacs-476933b2356f04effdeffde59dad5d15bb46bacd.tar.gz emacs-476933b2356f04effdeffde59dad5d15bb46bacd.tar.bz2 emacs-476933b2356f04effdeffde59dad5d15bb46bacd.zip |
; * lisp/simple.el (shell-command-to-string): Fix quotation.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 8ab4660566d..b770d9d7d33 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -5069,7 +5069,7 @@ other cases, consider alternatives such as `call-process' or `process-lines', which do not invoke the shell. Consider using built-in functions like `rename-file' instead of the external command \"mv\". For more information, see Info node -‘(elisp)Security Considerations’." +`(elisp)Security Considerations'." (with-output-to-string (with-current-buffer standard-output (shell-command command t)))) |