packages feed

ghc-mod 1.0.7 → 1.0.8

raw patch · 3 files changed

+10/−3 lines, 3 files

Files

Flag.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE CPP #-}+ module Flag where  import DynFlags@@ -6,5 +8,10 @@ listFlags :: Options -> IO String listFlags opt = return $ convert opt $    [ "-f" ++ prefix ++ option-   | (option,_,_) <- fFlags, prefix <- ["","no-"]+#if __GLASGOW_HASKELL__ == 702+   | (option,_,_,_) <- fFlags+#else+   | (option,_,_) <- fFlags+#endif+   , prefix <- ["","no-"]    ]
elisp/ghc.el view
@@ -16,7 +16,7 @@  ;;; Code: -(defconst ghc-version "1.0.7")+(defconst ghc-version "1.0.8")  ;; (eval-when-compile ;;  (require 'haskell-mode))
ghc-mod.cabal view
@@ -1,5 +1,5 @@ Name:                   ghc-mod-Version:                1.0.7+Version:                1.0.8 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3