packages feed

ghc-mod 4.1.4 → 4.1.5

raw patch · 3 files changed

+6/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Language/Haskell/GhcMod/Gap.hs view
@@ -276,8 +276,10 @@  instance HasType (LHsBind Id) where #if __GLASGOW_HASKELL__ >= 708-    getType _ (L spn FunBind{fun_matches = MG _ in_tys out_typ}) = return $ Just (spn, typ)-      where typ = mkFunTys in_tys out_typ+    getType _ (L spn FunBind{fun_matches = m}) = return $ Just (spn, typ)+      where in_tys = mg_arg_tys m+            out_typ = mg_res_ty m+            typ = mkFunTys in_tys out_typ #else     getType _ (L spn FunBind{fun_matches = MatchGroup _ typ}) = return $ Just (spn, typ) #endif
elisp/ghc.el view
@@ -28,7 +28,7 @@ 	       (< emacs-minor-version minor)))       (error "ghc-mod requires at least Emacs %d.%d" major minor))) -(defconst ghc-version "4.1.4")+(defconst ghc-version "4.1.5")  ;; (eval-when-compile ;;  (require 'haskell-mode))
ghc-mod.cabal view
@@ -1,5 +1,5 @@ Name:                   ghc-mod-Version:                4.1.4+Version:                4.1.5 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3