From 548865d36344b60a5bd8ea8a33ccffed5f915e00 Mon Sep 17 00:00:00 2001 From: qrczak Date: Fri, 18 May 2001 21:57:30 +0000 Subject: [PATCH] [project @ 2001-05-18 21:57:30 by qrczak] s'/n -> /r/n'\n -> \r\n' in a comment. --- ghc/lib/std/PrelHandle.hsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/lib/std/PrelHandle.hsc b/ghc/lib/std/PrelHandle.hsc index d7612d9..353157a 100644 --- a/ghc/lib/std/PrelHandle.hsc +++ b/ghc/lib/std/PrelHandle.hsc @@ -4,7 +4,7 @@ #undef DEBUG -- ----------------------------------------------------------------------------- --- $Id: PrelHandle.hsc,v 1.1 2001/05/18 16:54:05 simonmar Exp $ +-- $Id: PrelHandle.hsc,v 1.2 2001/05/18 21:57:30 qrczak Exp $ -- -- (c) The University of Glasgow, 1994-2001 -- @@ -921,7 +921,7 @@ hGetPosn handle = wantSeekableHandle "hGetPosn" handle $ \ handle_ -> do #if defined(_WIN32) - -- urgh, on Windows we have to worry about /n -> /r/n translation, + -- urgh, on Windows we have to worry about \n -> \r\n translation, -- so we can't easily calculate the file position using the -- current buffer size. Just flush instead. flushBuffer handle_ -- 1.7.10.4