From 8f6a084d02ff92eab9ef6e5d8475c98087a9884a Mon Sep 17 00:00:00 2001 From: Fice T Date: Mon, 16 May 2016 16:44:11 -0600 Subject: [PATCH] Fix typo in haskell-process-get-type --- haskell-doc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haskell-doc.el b/haskell-doc.el index 1637c6725..4ac06a1b2 100644 --- a/haskell-doc.el +++ b/haskell-doc.el @@ -1541,8 +1541,8 @@ If SYNC is non-nil, make the call synchronously instead." :go (lambda (_) (haskell-process-send-string process ghci-command)) :complete (lambda (_ response) - (funcall callback (funcall process-response response)))))) - 'async))) + (funcall callback (funcall process-response response))))) + 'async)))) (defun haskell-doc-sym-doc (sym) "Show the type of given symbol SYM.