From d854ef58a1564cacd523dfd8f5966247e229b96f Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 11 Sep 2003 09:29:22 +0000 Subject: [PATCH] [project @ 2003-09-11 09:29:22 by simonmar] The reify keywords should be valid when template haskell is turned on. --- ghc/compiler/parser/Lexer.x | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/compiler/parser/Lexer.x b/ghc/compiler/parser/Lexer.x index 0bff597..1159f63 100644 --- a/ghc/compiler/parser/Lexer.x +++ b/ghc/compiler/parser/Lexer.x @@ -503,9 +503,9 @@ reservedWordsFM = listToUFM $ ( "forall", ITforall, bit glaExtsBit), ( "mdo", ITmdo, bit glaExtsBit), - ( "reifyDecl", ITreifyDecl, bit glaExtsBit), - ( "reifyType", ITreifyType, bit glaExtsBit), - ( "reifyFixity",ITreifyFixity, bit glaExtsBit), + ( "reifyDecl", ITreifyDecl, bit thBit), + ( "reifyType", ITreifyType, bit thBit), + ( "reifyFixity",ITreifyFixity, bit thBit), ( "foreign", ITforeign, bit ffiBit), ( "export", ITexport, bit ffiBit), -- 1.7.10.4