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:
uz
2011-01-16 14:51:13 +00:00
parent 1d36b7f1b3
commit dbfae85f54
11 changed files with 49 additions and 49 deletions

View File

@@ -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 */