Remove debugging code accidentally left in
authorSimon Marlow <marlowsd@gmail.com>
Thu, 9 Sep 2010 11:33:31 +0000 (11:33 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Thu, 9 Sep 2010 11:33:31 +0000 (11:33 +0000)
GHC/IO/Handle/Text.hs

index f05905c..745dc18 100644 (file)
@@ -949,7 +949,7 @@ bufReadNBEmpty :: Handle__ -> Buffer Word8 -> Ptr Word8 -> Int -> Int -> IO Int
 bufReadNBEmpty   h_@Handle__{..}
                  buf@Buffer{ bufRaw=raw, bufR=w, bufL=r, bufSize=sz }
                  ptr so_far count
-  | count > sz, False,
+  | count > sz,
     Just fd <- cast haDevice = do
        m <- RawIO.readNonBlocking (fd::FD) ptr count
        case m of