From 5396573a6a61ec31ae8e7664f76fdf09901d2963 Mon Sep 17 00:00:00 2001 From: Xi Shen Date: Sat, 24 Jan 2015 00:00:32 +0000 Subject: pylint.el edited online with Bitbucket - use `shell-quote-argument` to quote file name correctly - tested in both Windows and Linux --- elisp/pylint.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp/pylint.el b/elisp/pylint.el index 69dac09..90a586c 100644 --- a/elisp/pylint.el +++ b/elisp/pylint.el @@ -115,7 +115,7 @@ output buffer, to go to the lines where pylint found matches. 'identity (list pylint-command (mapconcat 'identity pylint-options " ") - (comint-quote-filename file)) " "))) + (shell-quote-argument file)) " "))) (compilation-start command 'pylint-mode))) -- cgit v1.2.1