Use System.IO.stderr rather than IO.stderr in GHCi. Fixes trac #1001.
authorIan Lynagh <igloo@earth.li>
Sat, 9 Dec 2006 18:51:52 +0000 (18:51 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 9 Dec 2006 18:51:52 +0000 (18:51 +0000)
commit1d35581af7f2228a730385bfc37cb3cf5fc48243
treed8038e9eb5f9b265ce0bfa2ed67b313505c53935
parent139422fe20cad5d1cb859e16e609c6b33811ad2e
Use System.IO.stderr rather than IO.stderr in GHCi. Fixes trac #1001.
GHCi evaluates a command to flush the stdout/stderr buffers, but this
command can only use names that are in scope. It used to need IO.stderr
from the haskell98 package, but this patch means it only needs things
from the base package.
compiler/ghci/InteractiveUI.hs