2004-01-30 15:30 UTC+0100 Ryszard Glab <rglab@imid.med.pl>

* source/pp/ppcore.c
      * fixed compilation of &(exp) in normal stringify
      markers (this fixes INDEX ON bug reported by Jorge)
This commit is contained in:
Ryszard Glab
2004-01-30 14:32:19 +00:00
parent e506f7a129
commit 6098b1027c
2 changed files with 10 additions and 0 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2004-01-30 15:30 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
* source/pp/ppcore.c
* fixed compilation of &(exp) in normal stringify
markers (this fixes INDEX ON bug reported by Jorge)
2004-01-30 10:40 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
* source/rtl/teditor.prg
* the current line is still visible after the window resizing

View File

@@ -2779,6 +2779,11 @@ static BOOL ScanMacro( char * expreal, int lenitem, int * pNewLen )
lennew = lenitem-1;
break;
}
else if( expreal[ i ] == '(' )
{
/* &(var) => "(var)" */
break;
}
} while( i++ < lenitem );
if( bSmartMacro )