2001-06-21 14:55 UTC-0800 Ron Pinkas <ron@profit-master.com>

* source/pp/ppcore.c
     * Commented out test for continuation token at the end of an Expression in isExpress()
       /* Clipper does not validate extracted expression like that. This solves problem with:
          SAVE ALL LIKE Patt* TO File
        */
This commit is contained in:
Ron Pinkas
2001-06-21 21:52:07 +00:00
parent 0c9194fe64
commit c09e2a2779
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2001-06-21 14:55 UTC-0800 Ron Pinkas <ron@profit-master.com>
* source/pp/ppcore.c
* Commented out test for continuation token at the end of an Expression in isExpress()
/* Clipper does not validate extracted expression like that. This solves problem with:
SAVE ALL LIKE Patt* TO File
*/
2001-06-21 14:05 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.prg
+ Revised explicit support for Extended expression match marker, in NextExp() to use normal logic for () expresiions.

View File

@@ -2318,7 +2318,7 @@ static BOOL isExpres( char * stroka )
return ( l1 <= l2 );
*/
return ( l1 <= l2 && ! IsInStr( ( stroka - l2 )[l1-1], ":/+*-%^=(<>[{" ) );
return ( l1 <= l2 /*&& ! IsInStr( ( stroka - l2 )[l1-1], ":/+*-%^=(<>[{" ) */ );
}
static BOOL TestOptional( char *ptr1, char *ptr2 )