From b48829f1afa7366b23d4beb7d8003a29095d5a8a Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 1 Oct 2005 16:48:44 +0000 Subject: [PATCH] *** empty log message *** --- ase/stx/makefile.lcc | 10 ++++++---- ase/stx/parser.c | 6 ++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ase/stx/makefile.lcc b/ase/stx/makefile.lcc index 0d1eff6d..091fe3e3 100644 --- a/ase/stx/makefile.lcc +++ b/ase/stx/makefile.lcc @@ -1,7 +1,9 @@ -SRCS = stx.c memory.c object.c symbol.c class.c dict.c misc.c array.c \ - context.c name.c token.c parser.c bootstrp.c bytecode.c interp.c -OBJS = stx.obj memory.obj object.obj symbol.obj class.obj dict.obj misc.obj array.obj \ - context.obj name.obj token.obj parser.obj bootstrp.obj bytecode.obj interp.obj +SRCS = stx.c memory.c object.c symbol.c class.c array.c \ + dict.c misc.c name.c token.c parser.c bootstrp.c \ + bytecode.c interp.c +OBJS = stx.obj memory.obj object.obj symbol.obj class.obj array.obj \ + dict.obj misc.obj name.obj token.obj parser.obj bootstrp.obj \ + bytecode.obj interp.obj OUT = xpstx.lib CC = lcc diff --git a/ase/stx/parser.c b/ase/stx/parser.c index 68858af5..c41d9d33 100644 --- a/ase/stx/parser.c +++ b/ase/stx/parser.c @@ -1,5 +1,5 @@ /* - * $Id: parser.c,v 1.75 2005-10-01 05:33:06 bacon Exp $ + * $Id: parser.c,v 1.76 2005-10-01 16:48:44 bacon Exp $ */ #include @@ -1120,15 +1120,13 @@ static int __parse_message_continuation ( * * ::= (';' )* */ - xp_bool_t dummy; - if (__parse_keyword_message(parser, is_super) == -1) return -1; while (parser->token.type == XP_STX_TOKEN_SEMICOLON) { EMIT_CODE_TEST (parser, XP_TEXT("DoSpecial(DUP_RECEIVER(CASCADE))"), XP_TEXT("")); GET_TOKEN (parser); - if (__parse_keyword_message (parser, &dummy) == -1) return -1; + if (__parse_keyword_message(parser, xp_false) == -1) return -1; EMIT_CODE_TEST (parser, XP_TEXT("DoSpecial(POP_TOP)"), XP_TEXT("")); }