Skip to content

Commit

Permalink
Merge pull request #4871 from melted/haskeline
Browse files Browse the repository at this point in the history
Fix to unblock haskeline-0.8
  • Loading branch information
melted committed Jun 6, 2020
2 parents f975b45 + 89a87cf commit 8ea1ec1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
2 changes: 1 addition & 1 deletion idris.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ Library
, directory >= 1.2.2.0 && < 1.2.3.0 || > 1.2.3.0
, filepath < 1.5
, fingertree >= 0.1.4.1 && < 0.2
, haskeline >= 0.7 && < 0.8
, haskeline >= 0.8 && < 0.9
, ieee754 >= 0.7 && < 0.9
, megaparsec >= 7.0.4 && < 9
, mtl >= 2.1 && < 2.3
Expand Down
8 changes: 0 additions & 8 deletions src/Idris/Output.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,13 @@ import Prelude hiding ((<$>))
#endif

import Control.Arrow (first)
import Control.Monad.Trans.Except (ExceptT(ExceptT), runExceptT)
import Data.List (intersperse, nub)
import Data.Maybe (fromJust, fromMaybe, isJust, listToMaybe)
import qualified Data.Set as S
import System.Console.Haskeline.MonadException (MonadException(controlIO),
RunIO(RunIO))
import System.FilePath (replaceExtension)
import System.IO (Handle, hPutStr, hPutStrLn)
import System.IO.Error (tryIOError)

instance MonadException m => MonadException (ExceptT Err m) where
controlIO f = ExceptT $ controlIO $ \(RunIO run) -> let
run' = RunIO (fmap ExceptT . run . runExceptT)
in fmap runExceptT $ f run'

pshow :: IState -> Err -> String
pshow ist err = displayDecorated (consoleDecorate ist) .
renderPretty 1.0 80 .
Expand Down
12 changes: 5 additions & 7 deletions src/Idris/REPL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -122,23 +122,21 @@ repl orig mods efile
(if colour && not isWindows
then colourisePrompt theme str
else str) ++ " "
x <- H.catch (H.withInterrupt $ getInputLine prompt)
(ctrlC (return $ Just ""))
x <- H.handleInterrupt (ctrlC (return $ Just "")) (H.withInterrupt $ getInputLine prompt)
case x of
Nothing -> do lift $ when (not quiet) (iputStrLn "Bye bye")
return ()
Just input -> -- H.catch
do ms <- H.catch (H.withInterrupt $ lift $ processInput input orig mods efile)
(ctrlC (return (Just mods)))
do ms <- H.handleInterrupt (ctrlC (return (Just mods))) (H.withInterrupt $ lift $ processInput input orig mods efile)
case ms of
Just mods -> let efile' = fromMaybe efile (listToMaybe mods)
in repl orig mods efile'
Nothing -> return ()
-- ctrlC)
-- ctrlC
where ctrlC :: InputT Idris a -> SomeException -> InputT Idris a
ctrlC act e = do lift $ iputStrLn (show e)
act -- repl orig mods
where ctrlC :: InputT Idris a -> InputT Idris a
ctrlC act = do lift $ iputStrLn "Interrupted"
act -- repl orig mods

showMVs c thm [] = ""
showMVs c thm ms = "Holes: " ++
Expand Down

0 comments on commit 8ea1ec1

Please sign in to comment.