Renamed the Token enumeration to token_t.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4909 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 1998-2010, Ullrich von Bassewitz */
|
||||
/* (C) 1998-2011, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@@ -333,7 +333,7 @@ static ExprNode* FuncBlank (void)
|
||||
/* We have a list of tokens that ends with the closing paren. Skip
|
||||
* the tokens, and count them. Allow optionally curly braces.
|
||||
*/
|
||||
Token Term = GetTokListTerm (TOK_RPAREN);
|
||||
token_t Term = GetTokListTerm (TOK_RPAREN);
|
||||
unsigned Count = 0;
|
||||
while (Tok != Term) {
|
||||
|
||||
@@ -437,7 +437,7 @@ static ExprNode* DoMatch (enum TC EqualityLevel)
|
||||
* single linked list of tokens including attributes. The list is
|
||||
* either enclosed in curly braces, or terminated by a comma.
|
||||
*/
|
||||
Token Term = GetTokListTerm (TOK_COMMA);
|
||||
token_t Term = GetTokListTerm (TOK_COMMA);
|
||||
while (Tok != Term) {
|
||||
|
||||
/* We may not end-of-line of end-of-file here */
|
||||
@@ -781,7 +781,7 @@ static ExprNode* FuncTCount (void)
|
||||
/* We have a list of tokens that ends with the closing paren. Skip
|
||||
* the tokens, and count them. Allow optionally curly braces.
|
||||
*/
|
||||
Token Term = GetTokListTerm (TOK_RPAREN);
|
||||
token_t Term = GetTokListTerm (TOK_RPAREN);
|
||||
int Count = 0;
|
||||
while (Tok != Term) {
|
||||
|
||||
@@ -1046,7 +1046,7 @@ static ExprNode* Term (void)
|
||||
ExprNode* Right;
|
||||
|
||||
/* Remember the token and skip it */
|
||||
Token T = Tok;
|
||||
token_t T = Tok;
|
||||
NextTok ();
|
||||
|
||||
/* Move root to left side and read the right side */
|
||||
@@ -1147,7 +1147,7 @@ static ExprNode* SimpleExpr (void)
|
||||
ExprNode* Right;
|
||||
|
||||
/* Remember the token and skip it */
|
||||
Token T = Tok;
|
||||
token_t T = Tok;
|
||||
NextTok ();
|
||||
|
||||
/* Move root to left side and read the right side */
|
||||
@@ -1209,7 +1209,7 @@ static ExprNode* BoolExpr (void)
|
||||
ExprNode* Right;
|
||||
|
||||
/* Remember the token and skip it */
|
||||
Token T = Tok;
|
||||
token_t T = Tok;
|
||||
NextTok ();
|
||||
|
||||
/* Move root to left side and read the right side */
|
||||
@@ -1276,7 +1276,7 @@ static ExprNode* Expr2 (void)
|
||||
ExprNode* Right;
|
||||
|
||||
/* Remember the token and skip it */
|
||||
Token T = Tok;
|
||||
token_t T = Tok;
|
||||
NextTok ();
|
||||
|
||||
/* Move root to left side and read the right side */
|
||||
@@ -1335,7 +1335,7 @@ static ExprNode* Expr1 (void)
|
||||
ExprNode* Right;
|
||||
|
||||
/* Remember the token and skip it */
|
||||
Token T = Tok;
|
||||
token_t T = Tok;
|
||||
NextTok ();
|
||||
|
||||
/* Move root to left side and read the right side */
|
||||
|
||||
Reference in New Issue
Block a user