[Emacs] Undefine intero--warn

This commit is contained in:
Ivan Malison 2017-03-25 06:58:27 -07:00
parent c7ead0ec0c
commit c61b4e6616
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -2759,7 +2759,10 @@ Intero seems to be causing hangs, so it has been disabled
:disabled t
:demand t
:after haskell-mode
:config (add-hook 'haskell-mode-hook 'intero-mode-whitelist))
:config
(progn
(defun intero--warn (&rest args))
(add-hook 'haskell-mode-hook 'intero-mode-whitelist)))
#+END_SRC
**** hindent
#+BEGIN_SRC emacs-lisp