6.4.2 release plans

Simon Marlow simonmar at microsoft.com
Mon Mar 20 04:31:56 EST 2006


On 18 March 2006 18:32, Ian Lynagh wrote:

> 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?

Done

Simon


More information about the Glasgow-haskell-users mailing list