From 0651f34dcea3f9d164015386759fe26695e8648b Mon Sep 17 00:00:00 2001 From: darkf Date: Fri, 8 Nov 2013 01:43:11 -0800 Subject: [PATCH] don't make stdin unbuffered --- Interp.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Interp.hs b/Interp.hs index de56584..3ebe45a 100644 --- a/Interp.hs +++ b/Interp.hs @@ -417,8 +417,6 @@ initIO :: IO () initIO = do hSetBinaryMode stdin True hSetBinaryMode stdout True - - hSetBuffering stdin NoBuffering hSetBuffering stdout NoBuffering -- Takes an interpreter state and evaluates it with the empty initial state.