summaryrefslogtreecommitdiff
path: root/ghc/compiler/reader
diff options
context:
space:
mode:
authorsimonpj <unknown>1998-03-19 17:44:52 +0000
committersimonpj <unknown>1998-03-19 17:44:52 +0000
commit350263b7fc9352f7eecb1769fe1840b0e20c7e04 (patch)
tree44d88a2a9fac1ad85725b03f32ce31c07ad12f4d /ghc/compiler/reader
parent4a0476ff8d337f35ff4f706d796fb3cb23573e5e (diff)
downloadhaskell-350263b7fc9352f7eecb1769fe1840b0e20c7e04.tar.gz
[project @ 1998-03-19 17:44:26 by simonpj]
Minor simplifier fixes
Diffstat (limited to 'ghc/compiler/reader')
-rw-r--r--ghc/compiler/reader/Lex.lhs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/compiler/reader/Lex.lhs b/ghc/compiler/reader/Lex.lhs
index ca67c8c897..181a93f0a3 100644
--- a/ghc/compiler/reader/Lex.lhs
+++ b/ghc/compiler/reader/Lex.lhs
@@ -753,8 +753,8 @@ ifaceKeywordsFM = listToUFM $
,("declarations_", ITdeclarations)
,("pragmas_", ITpragmas)
,("forall_", ITforall)
- ,("U_", ITunfold False)
- ,("U!_", ITunfold True)
+ ,("u_", ITunfold False)
+ ,("U_", ITunfold True)
,("A_", ITarity)
,("coerce_in_", ITcoerce_in)
,("coerce_out_", ITcoerce_out)