See ChangeLog entry 2003-05-08 15:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2003-05-08 19:30:57 +00:00
parent e4e6826fc9
commit 3242fd4df2
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-05-08 15:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/compiler/harbour.sly
! Fixed $<lNumber>3 in EmptyStatements to read $<lNumber>2.
2003-05-07 14:45 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
! OrdkeyCount() and OrdKeyNo() now returns physical records number and

View File

@@ -1560,7 +1560,7 @@ IfEndif : IfBegin EndIf { hb_compGenJumpHere( $1 ); }
;
EmptyStatements : LineStat { $<lNumber>$ = $<lNumber>1; }
| EmptyStatements LineStat { $<lNumber>$ += $<lNumber>3; }
| EmptyStatements LineStat { $<lNumber>$ += $<lNumber>2; }
;
EmptyStats : /* empty */ { $<lNumber>$ = 0; }