patch applied (ghc-6.6/ghc): Remove special lambda unicode character, it didn' t work anyway
Ian Lynagh <[email protected]> Tue, 16 Jan 2007 14:48:01 -0800
| Newsgroups | gmane.comp.lang.haskell.cvs.all |
|---|---|
| Message-ID | <20070116224801.GA17602__24947.9873026305$1168987703$gmane$org@cvs.haskell.org> |
Tue Jan 16 08:11:00 PST 2007 Simon Marlow <[email protected]> * Remove special lambda unicode character, it didn't work anyway Since lambda is a lower-case letter, it's debatable whether we want to steal it to mean lambda in Haskell source. However if we did, then we would probably want to make it a "special" symbol, not just a reserved symbol, otherwise writing \x->... (using unicode characters of course) wouldn't work, because \x would be treated as a single identifier, you'd need a space. M ./compiler/parser/Lexer.x -1