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:
@@ -667,7 +667,7 @@ static void StartExpClassic (Macro* M)
|
||||
/* Start expanding the classic macro M */
|
||||
{
|
||||
MacExp* E;
|
||||
Token Term;
|
||||
token_t Term;
|
||||
|
||||
|
||||
/* Skip the macro name */
|
||||
@@ -769,7 +769,7 @@ static void StartExpDefine (Macro* M)
|
||||
TokNode* Last;
|
||||
|
||||
/* The macro may optionally be enclosed in curly braces */
|
||||
Token Term = GetTokListTerm (TOK_COMMA);
|
||||
token_t Term = GetTokListTerm (TOK_COMMA);
|
||||
|
||||
/* Check if there is really a parameter */
|
||||
if (TokIsSep (Tok) || Tok == Term) {
|
||||
|
||||
Reference in New Issue
Block a user