branch: externals/bug-hunter
commit 2524718bec46877327782cf278558bb1c94e4f05
Author: Sebastian Wiesner <[email protected]>
Commit: Sebastian Wiesner <[email protected]>
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)