1
0
forked from GitHub/gf-core

Import orphan instances of MonadFail for ghc<8

Also upgrade alex/happy so automatic install works
This commit is contained in:
Andreas Källberg
2020-09-09 11:05:41 +02:00
parent 150b592aa9
commit 9d8cd55cd5
4 changed files with 23 additions and 1 deletions

View File

@@ -38,6 +38,9 @@ import GF.Server(server)
#endif
import GF.Command.Messages(welcome)
import GF.Infra.UseIO (Output)
-- Provides an orphan instance of MonadFail for StateT in ghc versions < 8
import Control.Monad.Trans.Instances ()
-- | Run the GF Shell in quiet mode (@gf -run@).
mainRunGFI :: Options -> [FilePath] -> IO ()
@@ -131,7 +134,8 @@ execute1' s0 =
"dt":ws -> define_tree ws
-- ordinary commands
_ -> do env <- gets commandenv
interpretCommandLine env s0
-- () env s0
-- interpretCommandLine env s0
continue
where
continue,stop :: ShellM Bool