diff --git a/preproc.c b/preproc.c index 29d5aff9..8cdb79a3 100644 --- a/preproc.c +++ b/preproc.c @@ -4827,7 +4827,7 @@ static bool expand_mmacro(Token * tline) { Token *label = NULL; int dont_prepend = 0; - Token **params, *t, *mtok; + Token **params, *t; Line *l = NULL; ExpDef *ed; ExpInv *ei; @@ -4839,7 +4839,6 @@ static bool expand_mmacro(Token * tline) /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */ if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID)) return false; - mtok = t; ed = is_mmacro(t, ¶ms); if (ed != NULL) { mname = t->text;