From 9c948a188c83e6b42fd3984d2367052634a1f36d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Mon, 10 Aug 2015 22:30:59 +0200 Subject: [PATCH] system: set streams to nil MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel KochmaƄski --- src/lsp/process.lsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lsp/process.lsp b/src/lsp/process.lsp index b7e80ad64..4777f88e8 100644 --- a/src/lsp/process.lsp +++ b/src/lsp/process.lsp @@ -41,6 +41,6 @@ (setf shell comspec option "/c"))) (nth-value 1 (run-program shell (list option cmd-string) - :wait t :output t :input t - :error t)))) + :wait t :output nil :input nil + :error nil))))