From 0785f5c2729dea30175aec0c5efbbe2cf6130ccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20F=C3=BCrmetz?= Date: Mon, 8 Aug 2016 14:05:28 +0200 Subject: [PATCH] Redirect error ouput in `ghc-run-ghc-mod' Fixes #820. --- elisp/ghc-func.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp/ghc-func.el b/elisp/ghc-func.el index 886e552..59397bc 100644 --- a/elisp/ghc-func.el +++ b/elisp/ghc-func.el @@ -211,7 +211,7 @@ default-directory))) ;; ghc-mod root (with-temp-buffer (let ((default-directory cdir)) - (apply 'ghc-call-process target nil t nil + (apply 'ghc-call-process target nil '(t nil) nil (append (ghc-make-ghc-options) cmds)) (buffer-substring (point-min) (1- (point-max)))))))))