1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-09 00:11:49 -07:00

* lisp/simple.el (shell-command-to-string):

Call `shell-command' in order to respect file name handlers.
This commit is contained in:
Michael Albinus 2018-01-25 15:29:38 +01:00
parent 421e2fb791
commit f44b50ffc9

View file

@ -3844,7 +3844,7 @@ interactively, this is t."
(with-output-to-string
(with-current-buffer
standard-output
(process-file shell-file-name nil t nil shell-command-switch command))))
(shell-command command t))))
(defun process-file (program &optional infile buffer display &rest args)
"Process files synchronously in a separate process.