2002-07-17 12:55 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
This commit is contained in:
@@ -8,6 +8,9 @@
|
||||
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2002-07-17 12:55 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
|
||||
* source/pp/ppcore.c
|
||||
! Bug fixed, related to #define f ..., #define t ... and .T., .F.
|
||||
|
||||
2002-07-17 12:30 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
|
||||
* source/debug/debugger.prg
|
||||
|
||||
@@ -3715,6 +3715,18 @@ static int NextName( char ** sSource, char * sDest )
|
||||
continue;
|
||||
}
|
||||
/* End - Ron Pinkas added 2001-02-21 */
|
||||
else if( (*sSource)[0] == '.' && toupper( (*sSource)[1] ) == 'T' && (*sSource)[2] == '.' )
|
||||
{
|
||||
(*sSource) += 3;
|
||||
cLastChar = ' ';
|
||||
continue;
|
||||
}
|
||||
else if( (*sSource)[0] == '.' && toupper( (*sSource)[1] ) == 'F' && (*sSource)[2] == '.' )
|
||||
{
|
||||
(*sSource) += 3;
|
||||
cLastChar = ' ';
|
||||
continue;
|
||||
}
|
||||
else if( **sSource == '\'' )
|
||||
{
|
||||
/* Ron Pinkas added 2000-11-08 */
|
||||
|
||||
Reference in New Issue
Block a user