From 7434eae33776ba56eae28dfd85172dd86d180be2 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 11 Jan 2006 12:17:41 +0000 Subject: [PATCH] [project @ 2006-01-11 12:17:41 by simonmar] understand Unicode lambda as a synonym for \ --- ghc/compiler/parser/Lexer.x | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc/compiler/parser/Lexer.x b/ghc/compiler/parser/Lexer.x index 84e5a1a..27b6e2d 100644 --- a/ghc/compiler/parser/Lexer.x +++ b/ghc/compiler/parser/Lexer.x @@ -559,6 +559,7 @@ reservedSymsFM = listToUFM $ ,(">>-", ITRarrowtail, bit arrowsBit) #if __GLASGOW_HASKELL__ >= 605 + ,("λ", ITlam, 0) ,("∀", ITforall, bit tvBit) ,("→", ITrarrow, 0) ,("←", ITlarrow, 0) -- 1.7.10.4