# HG changeset patch # User Claus Gittinger # Date 1129645530 -7200 # Node ID 7f71c88d1a6dfca2a5a531cad33b0908650a75b0 # Parent c0e48dbac0350e67b45f1e214035fe16dc8a2b9a *** empty log message *** diff -r c0e48dbac035 -r 7f71c88d1a6d Make.spec --- a/Make.spec Tue Oct 18 16:24:22 2005 +0200 +++ b/Make.spec Tue Oct 18 16:25:30 2005 +0200 @@ -17,6 +17,7 @@ $(OUTDIR)SyntaxHighlighter.$(O) OBJS=\ + $(OUTDIR)ParserFlags.$(O) \ $(OUTDIR)Scanner.$(O) \ $(OUTDIR)Parser.$(O) \ $(OUTDIR)ByteCodeCompiler.$(O) \ diff -r c0e48dbac035 -r 7f71c88d1a6d abbrev.stc --- a/abbrev.stc Tue Oct 18 16:24:22 2005 +0200 +++ b/abbrev.stc Tue Oct 18 16:25:30 2005 +0200 @@ -21,6 +21,7 @@ ParseErrorNode ParseErrorNode stx:libcomp 'System-Compiler-Support' 0 ParseNode ParseNode stx:libcomp 'System-Compiler-Support' 0 Parser Parser stx:libcomp 'System-Compiler' 0 +ParserFlags ParserFlags stx:libcomp 'System-Compiler' 0 PrimaryNode PrimaryNode stx:libcomp 'System-Compiler-Support' 0 PrimitiveNode PrimitiveNode stx:libcomp 'System-Compiler-Support' 0 ProgramNode ProgramNode stx:libcomp 'System-Compiler ST-80-compatibility' 0 diff -r c0e48dbac035 -r 7f71c88d1a6d libInit.cc --- a/libInit.cc Tue Oct 18 16:24:22 2005 +0200 +++ b/libInit.cc Tue Oct 18 16:25:30 2005 +0200 @@ -21,6 +21,7 @@ void _libcomp_Init(pass, __pRT__, snd) OBJ snd; struct __vmData__ *__pRT__; { __BEGIN_PACKAGE2__("libcomp", _libcomp_Init, "stx:libcomp"); +_ParserFlags_Init(pass,__pRT__,snd); _Scanner_Init(pass,__pRT__,snd); _Parser_Init(pass,__pRT__,snd); _ByteCodeCompiler_Init(pass,__pRT__,snd);