diff options
author | simonmar <unknown> | 2003-09-11 09:29:22 +0000 |
---|---|---|
committer | simonmar <unknown> | 2003-09-11 09:29:22 +0000 |
commit | d854ef58a1564cacd523dfd8f5966247e229b96f (patch) | |
tree | e7bd02f99eea1c051fb84bb89cfd4d24f28000a0 /ghc/compiler/parser/Lexer.x | |
parent | b960cef538f6744d047dc04e7bc73c1fbd3bf41b (diff) | |
download | haskell-d854ef58a1564cacd523dfd8f5966247e229b96f.tar.gz |
[project @ 2003-09-11 09:29:22 by simonmar]
The reify keywords should be valid when template haskell is turned on.
Diffstat (limited to 'ghc/compiler/parser/Lexer.x')
-rw-r--r-- | ghc/compiler/parser/Lexer.x | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/compiler/parser/Lexer.x b/ghc/compiler/parser/Lexer.x index 0bff597766..1159f630e1 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), |