ChangeLog 19991122-17:25

This commit is contained in:
Ryszard Glab
1999-11-22 16:29:06 +00:00
parent a4ec35927e
commit 1febce1155
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
19991122-17:25 GMT+1 Ryszard Glab <rglab@imid.med.pl>
* source/compiler/harbour.y
* fixed incorrect error generation if empty lines were placed between
DO CASE statement and the first CASE statement
19991122-16:12 GMT+1 Victor Szel <info@szelvesz.hu>
* source/common/hbstr.c
include/extend.h

View File

@@ -340,7 +340,7 @@ LineStat : Crlf { $<lNumber>$ = 0; hb_comp_bDontGenLineNum = TRUE; }
;
Statements : LineStat { $<lNumber>$ = $<lNumber>1; }
| Statements LineStat { $<lNumber>$ += $<lNumber>3; }
| Statements LineStat { $<lNumber>$ += $<lNumber>1; }
;
ExtList : IDENTIFIER { hb_compExternAdd( $1 ); }