From b8e63b24078ec8cfe9ef0c0b2a3486ca42a4c00c Mon Sep 17 00:00:00 2001 From: Akira Komamura Date: Thu, 19 Sep 2024 17:48:42 +0900 Subject: [PATCH] Fix unnecessary use of shell-quote-argument --- d2-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d2-mode.el b/d2-mode.el index 4deed4a..050bf6a 100644 --- a/d2-mode.el +++ b/d2-mode.el @@ -329,7 +329,7 @@ Argument FILE-NAME the input file." (interactive "fFilename: ") (let* ((input file-name) (output (concat (file-name-sans-extension input) d2-output-format))) - (apply #'call-process (shell-quote-argument d2-location) nil "*d2*" nil (append (list input output) d2-flags)) + (apply #'call-process d2-location nil "*d2*" nil (append (list input output) d2-flags)) (if (equal browse t) (progn (d2-browse-file output))