emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/bug-hunter 2524718 55/95: Don't quote file name argumen


From: Stefan Monnier
Subject: [elpa] externals/bug-hunter 2524718 55/95: Don't quote file name argument to `call-process`
Date: Fri, 27 Nov 2020 22:06:56 -0500 (EST)

branch: externals/bug-hunter
commit 2524718bec46877327782cf278558bb1c94e4f05
Author: Sebastian Wiesner <swiesner@lunaryorn.com>
Commit: Sebastian Wiesner <swiesner@lunaryorn.com>

    Don't quote file name argument to `call-process`
---
 bug-hunter.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bug-hunter.el b/bug-hunter.el
index bd6c06d..856079b 100644
--- a/bug-hunter.el
+++ b/bug-hunter.el
@@ -229,8 +229,7 @@ the file."
           (with-temp-file file-name
             (print (list 'prin1 form) (current-buffer)))
           (call-process exec nil out-buf nil
-                        "-Q" "--batch" "-l"
-                        (shell-quote-argument file-name))
+                        "-Q" "--batch" "-l" file-name)
           (with-current-buffer out-buf
             (goto-char (point-max))
             (forward-sexp -1)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]