Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repline.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ library
exposed-modules: System.Console.Repline
ghc-options: -Wall
build-depends:
base >=4.6 && <5.0
base >=4.9 && <5.0
, containers >=0.5 && <0.7
, exceptions >=0.10 && <0.11
, haskeline >=0.8 && <0.9
Expand Down
3 changes: 2 additions & 1 deletion src/System/Console/Repline.hs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ import Control.Monad.Fix (MonadFix)
import Control.Monad.IO.Class (MonadIO(..))
import Control.Monad.Reader
import Control.Monad.State.Strict
import Data.Kind (Type)
import Data.List (isPrefixOf)
import qualified System.Console.Haskeline as H
import System.Console.Haskeline.Completion
Expand All @@ -185,7 +186,7 @@ import System.Console.Haskeline.Completion
-------------------------------------------------------------------------------

-- | Monad transformer for readline input
newtype HaskelineT (m :: * -> *) a = HaskelineT {unHaskeline :: H.InputT m a}
newtype HaskelineT (m :: Type -> Type) a = HaskelineT {unHaskeline :: H.InputT m a}
deriving
( Monad,
Functor,
Expand Down