2000-06-26 06:22 UTC-0800 Ron Pinkas <Ron@Profit-Master.com>

* source/compiler/harbour.l
     ! Fixed 3 typos that made strings to be compiled with the closing string delimiter, causing Run-Time error 9004.
This commit is contained in:
Ron Pinkas
2000-06-26 13:27:54 +00:00
parent 8630299961
commit 5f871ca7b3
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2000-06-26 06:22 UTC-0800 Ron Pinkas <Ron@Profit-Master.com>
* source/compiler/harbour.l
! Fixed 3 typos that made strings to be compiled with the closing string delimiter, causing Run-Time error 9004.
2000-06-26-14:40 GMT +1 Ignacio Ortiz de Zuniga <ignacio@fivetech.com>
* memoline.c
* fixed minor bug

View File

@@ -219,7 +219,7 @@ Separator {SpaceTab}
else
BEGIN 0;
yytext[yyleng--] = '\0';
yytext[--yyleng] = '\0';
yylval.string = hb_strdup( yytext );
return LITERAL;
@@ -230,7 +230,7 @@ Separator {SpaceTab}
else
BEGIN 0;
yytext[yyleng--] = '\0';
yytext[--yyleng] = '\0';
yylval.string = hb_strdup( yytext );
return LITERAL;
@@ -241,7 +241,7 @@ Separator {SpaceTab}
else
BEGIN 0;
yytext[yyleng--] = '\0';
yytext[--yyleng] = '\0';
yylval.string = hb_strdup( yytext );
return LITERAL;