This project is mirrored from https://github.com/judah/haskeline.
Pull mirroring updated .
- 24 Dec, 2015 4 commits
-
-
judah authored
Suppress hsc2hs-related warning on GHC HEAD
-
Ryan Scott authored
-
Ryan Scott authored
-
Ryan Scott authored
-
- 23 Dec, 2015 3 commits
-
-
Ryan Scott authored
-
Ryan Scott authored
-
Ryan Scott authored
-
- 18 Dec, 2015 4 commits
-
-
judah authored
-
judah authored
-
judah authored
Untabify and delete trailing whitespace
-
Herbert Valerio Riedel authored
This makes haskeline `-Wtabs`-clean
-
- 16 Dec, 2015 2 commits
-
-
judah authored
Relax upper bound to allow upcoming `transformers-0.5`
-
Herbert Valerio Riedel authored
GHC 8.0 will ship with the not yet released `transformers-0.5.0.0` release.
-
- 23 Nov, 2015 4 commits
-
-
judah authored
Generalise constraints for InputT instances
-
judah authored
Canonicalise AMP instances
-
Herbert Valerio Riedel authored
This flips the AMP instance definitions into canonical form and makes the code a bit more future proof.
-
Herbert Valerio Riedel authored
I'm not sure why the code was written the way it was, but it seems we can do better by letting GHC directly reuse `ReaderT`'s instances as well as relaxing the constraints from instance Monad m => Functor (InputT m) instance Monad m => Applicative (InputT m) instance Monad m => Monad (InputT m) to instance Functor m => Functor (InputT m) instance Applicative m => Applicative (InputT m) instance Monad m => Monad (InputT m) This looks the same on GHC 7.8 (pre-AMP) as well as GHC 7.10 (post-AMP)
-
- 29 Oct, 2015 1 commit
-
-
judah authored
Fix Linux to Windows cross-compile
-
- 28 Oct, 2015 3 commits
-
-
Erik de Castro Lopo authored
The #include of <Shlobj.h> doesn't work when cross-compiling from Linux to Windows because the Linux file system is case sensitive and on Linux the file is <shlobj.h>. This change should not affect Windows builds because the Windows file system is case insensitive.
-
judah authored
GHC 8 is gonna come with base-4.9
-
Herbert Valerio Riedel authored
-
- 22 Mar, 2015 5 commits
-
-
judah authored
Updated to latest version of multi-ghc-travis. The build on 7.2.* was failing due to the constraint "Cabal >= $CABALVER" which tried to build a too-recent version of Cabal. Fixed by changing the constraint to "Cabal == $CABALVER.*".
-
judah authored
-
judah authored
-
judah authored
-
judah authored
-
- 20 Mar, 2015 2 commits
- 11 Mar, 2015 2 commits
-
-
judah authored
Allow new filepath-1.4 for GHC 7.10.1RC3
-
Herbert Valerio Riedel authored
See haskell/filepath@d039d5ae
-
- 20 Jan, 2015 2 commits
- 16 Dec, 2014 2 commits
- 04 Nov, 2014 2 commits
-
-
Andrés Sicard-Ramírez authored
This simplies the installation with GHC < 7.6.
-
Andrés Sicard-Ramírez authored
-
- 27 Sep, 2014 2 commits
-
-
judah authored
Fix TODO: messageState param not needed anymore
-
Philip Dexter authored
-
- 23 Sep, 2014 1 commit
-
-
judah authored
Use explicit forall syntax to avoid warning
-
- 22 Sep, 2014 1 commit
-
-
Herbert Valerio Riedel authored
This is currently just a warning in GHC HEAD, but ought to be fixed nevertheless: Variable ‘m’ is implicitly quantified due to a context Use explicit forall syntax instead. This will become an error in GHC 7.12.
-