diff options
| author | Eli Zaretskii | 2023-09-23 09:09:03 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-09-23 09:09:03 +0300 |
| commit | 476933b2356f04effdeffde59dad5d15bb46bacd (patch) | |
| tree | 4cb0a100f391b5ba92ccdcf5a0c24b0d5a280303 | |
| parent | e27ec0e41442067e88d58459fbc9814429f1d3dc (diff) | |
| download | emacs-476933b2356f04effdeffde59dad5d15bb46bacd.tar.gz emacs-476933b2356f04effdeffde59dad5d15bb46bacd.zip | |
; * lisp/simple.el (shell-command-to-string): Fix quotation.
| -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 | |||
| 5069 | `process-lines', which do not invoke the shell. Consider using | 5069 | `process-lines', which do not invoke the shell. Consider using |
| 5070 | built-in functions like `rename-file' instead of the external | 5070 | built-in functions like `rename-file' instead of the external |
| 5071 | command \"mv\". For more information, see Info node | 5071 | command \"mv\". For more information, see Info node |
| 5072 | ‘(elisp)Security Considerations’." | 5072 | `(elisp)Security Considerations'." |
| 5073 | (with-output-to-string | 5073 | (with-output-to-string |
| 5074 | (with-current-buffer standard-output | 5074 | (with-current-buffer standard-output |
| 5075 | (shell-command command t)))) | 5075 | (shell-command command t)))) |