X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Finterpreter%2Fstorage.h;h=da74ecb2bf0cc3124d2aff780ada97983e1b2418;hb=170d1670295c7cb9731f8d0eb034cf21f3e613ee;hp=7cb8c411c557ffcc3532bb4b813103ca57777a19;hpb=b9ad54f9b2bb99d2d3d62c61e2da71e076938f18;p=ghc-hetmet.git diff --git a/ghc/interpreter/storage.h b/ghc/interpreter/storage.h index 7cb8c41..da74ecb 100644 --- a/ghc/interpreter/storage.h +++ b/ghc/interpreter/storage.h @@ -3,14 +3,15 @@ * Defines storage datatypes: Text, Name, Module, Tycon, Cell, List, Pair, * Triple, ... * - * Hugs 98 is Copyright (c) Mark P Jones, Alastair Reid and the Yale - * Haskell Group 1994-99, and is distributed as Open Source software - * under the Artistic License; see the file "Artistic" that is included - * in the distribution for details. + * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the + * Yale Haskell Group, and the Oregon Graduate Institute of Science and + * Technology, 1994-1999, All rights reserved. It is distributed as + * free software under the license in the file "License", which is + * included in the distribution. * * $RCSfile: storage.h,v $ - * $Revision: 1.6 $ - * $Date: 1999/04/27 10:07:06 $ + * $Revision: 1.10 $ + * $Date: 1999/10/16 02:17:25 $ * ------------------------------------------------------------------------*/ /* -------------------------------------------------------------------------- @@ -62,6 +63,7 @@ extern Bool inventedText Args((Text)); * qualified or unqualified. */ extern String identToStr Args((Cell)); +extern Text fixLitText Args((Text)); extern Syntax identSyntax Args((Cell)); extern Syntax defaultSyntax Args((Text)); @@ -132,7 +134,7 @@ extern Cell whatIs Args((Cell)); * ------------------------------------------------------------------------*/ #define TAGMIN 1 /* Box and constructor cell tag values */ -#define BCSTAG 20 /* Box=TAGMIN..BCSTAG-1 */ +#define BCSTAG 30 /* Box=TAGMIN..BCSTAG-1 */ #define isTag(c) (TAGMIN<=(c) && (c)