diff options
author | andy <unknown> | 2000-04-04 01:07:50 +0000 |
---|---|---|
committer | andy <unknown> | 2000-04-04 01:07:50 +0000 |
commit | be1966e78e545611f39eb2eed6f11fc60558100c (patch) | |
tree | 3b2a3b9d516021feb0ceae3368eadc7dcf107418 /ghc/interpreter/input.c | |
parent | a84e2d973928854935b3bc1f498fd81ed17f6483 (diff) | |
download | haskell-be1966e78e545611f39eb2eed6f11fc60558100c.tar.gz |
[project @ 2000-04-04 01:07:49 by andy]
Adding in support for split Hugs Prelude.
There are now two preludes.
(1) PrimPrel - the Prelude defintions, and the extra magic datatypes.
(2) Prelude - the external interface for Prelude.
Diffstat (limited to 'ghc/interpreter/input.c')
-rw-r--r-- | ghc/interpreter/input.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ghc/interpreter/input.c b/ghc/interpreter/input.c index a21cc2b831..99c8ae960e 100644 --- a/ghc/interpreter/input.c +++ b/ghc/interpreter/input.c @@ -9,8 +9,8 @@ * included in the distribution. * * $RCSfile: input.c,v $ - * $Revision: 1.24 $ - * $Date: 2000/03/24 14:32:03 $ + * $Revision: 1.25 $ + * $Date: 2000/04/04 01:07:49 $ * ------------------------------------------------------------------------*/ #include "hugsbasictypes.h" @@ -151,6 +151,7 @@ Text textCcall; /* ccall */ Text textStdcall; /* stdcall */ Text textNum; /* Num */ +Text textPrimPrel; /* PrimPrel */ Text textPrelude; /* Prelude */ Text textPlus; /* (+) */ @@ -1699,6 +1700,7 @@ Int what; { textBang = findText("!"); textDot = findText("."); textImplies = findText("=>"); + textPrimPrel = findText("PrimPrel"); textPrelude = findText("Prelude"); textNum = findText("Num"); textModule = findText("module"); |