
18 Mar
2006
18 Mar
'06
1:31 p.m.
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