2000-11-09 09:00 UTC+0800 Ron Pinkas <ron@profit-master.com>

* source/pp/ppcore.c
     * Fixed typo in NextName()
This commit is contained in:
Ron Pinkas
2000-11-09 16:54:05 +00:00
parent b719976682
commit 0abf4b8b9a
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2000-11-09 09:00 UTC+0800 Ron Pinkas <ron@profit-master.com>
* source/pp/ppcore.c
* Fixed typo in NextName()
2000-11-09 01:10 UTC+0800 Ron Pinkas <ron@profit-master.com>
* source/pp/ppcore.c
* Fixed STATE_QUOT3 ([]) support in getExpReal() and added STATE_QUOT3 support to NextParm() NextName() and md_strAt()

View File

@@ -3156,7 +3156,7 @@ static int NextName( char ** sSource, char * sDest )
/* Ron Pinkas added 2000-11-08 - Prepare for next run. */
pTmp = *sSource;
while( *pTmp && ( pTmp == ' ' || pTmp == '\t' ) )
while( *pTmp && ( *pTmp == ' ' || *pTmp == '\t' ) )
{
pTmp++;
}