Subversion Repositories filter_foundry

Rev

Rev 503 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 503 Rev 518
Line 57... Line 57...
57
#define DPARSE 
57
#define DPARSE 
58
 
58
 
59
struct node *parsetree;
59
struct node *parsetree;
60
TCHAR *errstr;
60
TCHAR *errstr;
61
 
61
 
62
enum{ PARENSTACK = 100 };
62
#define PARENSTACK 100
63
 
63
 
64
int inarglist[PARENSTACK],arglistptr; // keep track of whether a comma is an function argument separator, or operator
64
int inarglist[PARENSTACK],arglistptr; // keep track of whether a comma is an function argument separator, or operator
65
 
65
 
66
int pushflag(int x){
66
int pushflag(int x){
67
	if(arglistptr < (PARENSTACK-1))
67
	if(arglistptr < (PARENSTACK-1))