6.4.2 release plans
Ian Lynagh
igloo at earth.li
Sat Mar 18 13:31:55 EST 2006
On Wed, Mar 15, 2006 at 04:24:14PM +0000, Simon Marlow wrote:
>
> If you have anything else for 6.4.2, please let me know.
Just a small thing, but it looks like, while the HEAD has been changed
to send --help output to stdout, ghc-6.4.2.20060316 still has the
following in ghc/compiler/main/DriverFlags.hs
dump ('$':'$':s) = hPutStr stderr progName >> dump s
dump (c:s) = hPutChar stderr c >> dump s
Is this deliberate, or could it be changed to
dump ('$':'$':s) = putStr progName >> dump s
dump (c:s) = putChar c >> dump s
please?
Thanks
Ian
More information about the Glasgow-haskell-users
mailing list