From 194f49e0ad9d8ab04a42a71c3e3b1e22dd7688fb Mon Sep 17 00:00:00 2001 From: "brianlsmith@gmail.com" Date: Sun, 17 Sep 2006 01:35:30 +0000 Subject: [PATCH] Fix syntax error that prevents building Haddock documentation on Windows --- GHC/Handle.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GHC/Handle.hs b/GHC/Handle.hs index d938e7b..e0b755f 100644 --- a/GHC/Handle.hs +++ b/GHC/Handle.hs @@ -974,7 +974,7 @@ mkFileHandle fd is_stream filepath ha_type binary = do -- On Windows, if this is a read/write handle and we are in text mode, -- turn off buffering. We don't correctly handle the case of switching -- from read mode to write mode on a buffered text-mode handle, see bug - -- #679. + -- \#679. bmode <- case ha_type of ReadWriteHandle | not binary -> return NoBuffering _other -> return bmode -- 1.7.10.4