On Tue, Sep 9, 2008 at 16:32, John Ferrier <[EMAIL PROTECTED]> wrote:
> I've already applied your V3 patch. However, when I tried to patch this one,
> I got:
>
> patching file source/interpret.c
> patching file source/interpret.h
> patching file source/parse.y
> Hunk #2 succeeded at 346 (offset -1 lines).
> Hunk #3 succeeded at 562 (offset -1 lines).
Yeah, there was a missing semicolon in this file, but it doesn't
triggered an error. Apply this patch in between:
diff --quilt old/source/parse.y new/source/parse.y
--- old/source/parse.y
+++ new/source/parse.y
@@ -146,10 +146,11 @@ define: DEFINE {
yyerror("try to override built-in
subroutine"); YYERROR;
}
$4->type = MACRO_FUNCTION_SYM;
$4->value.val.prog = prog;
}
+ ;
stmt: simpstmt '\n' blank
| IF '(' cond ')' blank block %prec IF_NO_ELSE {
SET_BR_OFF($3, GetPC());
}
| IF '(' cond ')' blank block else blank block %prec ELSE {
BTW: Thanks for the interest.
Bert
--
NEdit Develop mailing list - [email protected]
http://www.nedit.org/mailman/listinfo/develop