From 27fb395935ac94842ca932e4935ad9f9883baf73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arthur=20Fayzrakhmanov=20=28=D0=90=D1=80=D1=82=D1=83=D1=80?= =?UTF-8?q?=20=D0=A4=D0=B0=D0=B9=D0=B7=D1=80=D0=B0=D1=85=D0=BC=D0=B0=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=29?= Date: Fri, 5 Jun 2015 22:50:35 +0500 Subject: [PATCH] Add missing parentheses --- haskell-commands.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-commands.el b/haskell-commands.el index 43208fd8c..a597840f3 100644 --- a/haskell-commands.el +++ b/haskell-commands.el @@ -967,7 +967,7 @@ modified message MSG to echo area." (if haskell-process-use-presentation-mode (let ((session (haskell-process-session (haskell-interactive-process)))) (haskell-present session msg)) - (let (m (haskell-utils-reduce-string msg)) + (let ((m (haskell-utils-reduce-string msg))) (message m)))) (defun haskell-utils-async-update-post-command-flag ()