From 3242fd4df20e2cd7c5b2da23356ab93376c1d62c Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Thu, 8 May 2003 19:30:57 +0000 Subject: [PATCH] See ChangeLog entry 2003-05-08 15:30 UTC-0400 David G. Holm --- harbour/ChangeLog | 4 ++++ harbour/source/compiler/harbour.sly | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8b03f2bfd6..347d074326 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-05-08 15:30 UTC-0400 David G. Holm + * source/compiler/harbour.sly + ! Fixed $3 in EmptyStatements to read $2. + 2003-05-07 14:45 UTC+0300 Alexander Kresin * source/rdd/dbfntx/dbfntx1.c ! OrdkeyCount() and OrdKeyNo() now returns physical records number and diff --git a/harbour/source/compiler/harbour.sly b/harbour/source/compiler/harbour.sly index 22bdeeac80..a46e9e4350 100644 --- a/harbour/source/compiler/harbour.sly +++ b/harbour/source/compiler/harbour.sly @@ -1560,7 +1560,7 @@ IfEndif : IfBegin EndIf { hb_compGenJumpHere( $1 ); } ; EmptyStatements : LineStat { $$ = $1; } - | EmptyStatements LineStat { $$ += $3; } + | EmptyStatements LineStat { $$ += $2; } ; EmptyStats : /* empty */ { $$ = 0; }