Skip to content
Snippets Groups Projects
Commit 6c6ca84c authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-11-22 10:53:11 by simonmar]

remove some irrelevant code
parent 25a1b0c3
No related branches found
No related tags found
No related merge requests found
......@@ -428,9 +428,6 @@ writeLines obj buf bufLen initPos s =
shoveString n ls =
case ls of
[] ->
if n == 0 then
setBufWPtr obj 0{-new pos-}
else do
{-
At the end of a buffer write, update the buffer position
in the underlying file object, so that if the handle
......@@ -476,9 +473,6 @@ writeLines obj buf (I# bufLen) (I# initPos#) s =
shoveString n ls =
case ls of
[] ->
if n ==# 0# then
setBufWPtr obj 0
else do
{-
At the end of a buffer write, update the buffer position
in the underlying file object, so that if the handle
......@@ -521,9 +515,6 @@ writeBlocks obj buf bufLen initPos s =
shoveString n ls =
case ls of
[] ->
if n == 0 then
setBufWPtr obj (0::Int)
else do
{-
At the end of a buffer write, update the buffer position
in the underlying file object, so that if the handle
......@@ -570,9 +561,6 @@ writeBlocks obj buf (I# bufLen) (I# initPos#) s =
shoveString n ls =
case ls of
[] ->
if n ==# 0# then
setBufWPtr obj (0::Int)
else do
{-
At the end of a buffer write, update the buffer position
in the underlying file object, so that if the handle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment