Still have to parse ahead though

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-30 15:41:01 +01:00
parent b78dab9d71
commit 0627e9e06e

View file

@ -1266,8 +1266,9 @@ static bool ftepp_preprocess(ftepp_t *ftepp)
case TOKEN_IDENT:
case TOKEN_TYPENAME:
if (!ftepp->output_on)
break;
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
else
macro = NULL;
if (!macro) {
ftepp_out(ftepp, ftepp_tokval(ftepp), false);
ftepp_next(ftepp);