summaryrefslogtreecommitdiff
path: root/ghc/compiler/parser
diff options
context:
space:
mode:
authorsimonmar <unknown>2003-09-11 09:29:22 +0000
committersimonmar <unknown>2003-09-11 09:29:22 +0000
commitd854ef58a1564cacd523dfd8f5966247e229b96f (patch)
treee7bd02f99eea1c051fb84bb89cfd4d24f28000a0 /ghc/compiler/parser
parentb960cef538f6744d047dc04e7bc73c1fbd3bf41b (diff)
downloadhaskell-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')
-rw-r--r--ghc/compiler/parser/Lexer.x6
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),