Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Henrik Nilsson
Mon Mar 31 15:26:03 PDT 2008 Simon Marlow [EMAIL PROTECTED] * proposal: remove string gaps Hm. This has escaped me. I don't find the rationale as documented on the Wikipage http://hackage.haskell.org/trac/haskell-prime/wiki/RemoveStringGaps very convincing at all. I've thus added a few

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Neil Mitchell
Hi Henrik, In reality, string gaps are unusable in practice, because of GHC and -cpp. We had some in Yhc at one point, and then breakage happened, so we removed them. To quote from the page: * string gaps cause problems with CPP, which doesn't like the backslash at the end of the line. (a

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Henrik Nilsson
Hi Neil, If you have two features battling each other, you probably need to remove one of them. CPP isn't going to be removed, which kind of forces the issue... Well, for the record, I've used both CPP and string gaps extensively. And all I've done is to be careful to run CPP only where

patch applied (haskell-prime-status): add RecordPatternMatching and Disambiguate Record Fields

2008-04-01 Thread Simon Marlow
Tue Apr 1 14:46:12 PDT 2008 Simon Marlow [EMAIL PROTECTED] * add RecordPatternMatching and Disambiguate Record Fields M ./status.hs +4 ___ Haskell-prime mailing list Haskell-prime@haskell.org http://www.haskell.org/mailman/listinfo/haskell-prime

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Simon Marlow
Henrik Nilsson wrote: Mon Mar 31 15:26:03 PDT 2008 Simon Marlow [EMAIL PROTECTED] * proposal: remove string gaps Hm. This has escaped me. Not surprising - it wasn't discussed anywhere else, I just thought I should bring it up as a possibility to consider. I don't find the rationale

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Henrik Nilsson
I wonder if I should suggest removing all those strange ascii esacpe sequences next... Well, in contrast to string gaps, I don't think I've ever used those! /Henrik -- Henrik Nilsson School of Computer Science The University of Nottingham [EMAIL PROTECTED] This message has been checked for

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread John Meacham
I concur! i use them in quite a few places. If anything, I would like some more powerful style of quoting, like triple quotes in python. John -- John Meacham - ⑆repetae.net⑆john⑈ ___ Haskell-prime mailing list Haskell-prime@haskell.org

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread John Meacham
On Tue, Apr 01, 2008 at 09:47:30PM +0100, Neil Mitchell wrote: * string gaps cause problems with CPP, which doesn't like the backslash at the end of the line. (a minor consideration, since CPP is not part of the language, and in any case there is cpphs). Between the two, I'd say CPP is the

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Neil Mitchell
Hi If you have two features battling each other, you probably need to remove one of them. CPP isn't going to be removed, which kind of forces the issue... Well, for the record, I've used both CPP and string gaps extensively. And all I've done is to be careful to run CPP only

Re: patch applied (haskell-prime-status): proposal: remove string gaps

2008-04-01 Thread Manuel M T Chakravarty
John Meacham: On Tue, Apr 01, 2008 at 09:47:30PM +0100, Neil Mitchell wrote: * string gaps cause problems with CPP, which doesn't like the backslash at the end of the line. (a minor consideration, since CPP is not part of the language, and in any case there is cpphs). Between the two,