You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using last emacs from git, and last haskell-mode from git, make produces this error:
In toplevel form:
haskell-mode.el:831:1:Error: defcustom for ‘haskell-indent-spaces’ fails to specify type
Makefile:106: recipe for target 'build-25.1.50.1' failed
make: *** [build-25.1.50.1] Error 1
The text was updated successfully, but these errors were encountered:
diff --git a/haskell-mode.el b/haskell-mode.el
index d45384e..62fabad 100644
--- a/haskell-mode.el
+++ b/haskell-mode.el
@@ -830,7 +830,8 @@ Note that negative arguments do not work so well."
(defcustom haskell-indent-spaces 2
"Number of spaces to indent inwards."
- :group 'haskell)
+ :group 'haskell
+ :type 'integer)
;; Like Python. Should be abstracted, sigh.
(defun haskell-check (command)
Using last emacs from git, and last haskell-mode from git, make produces this error:
The text was updated successfully, but these errors were encountered: