From a56c224f9cf8b68625e0ef779ab9071fc7f35b3f Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Fri, 16 Nov 2012 20:50:28 +0100 Subject: [PATCH] macro_body parse function shouldn't skip whitespace inside --- ftepp.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ftepp.c b/ftepp.c index fcdaea7..7fe6b42 100644 --- a/ftepp.c +++ b/ftepp.c @@ -240,10 +240,7 @@ static bool ftepp_define_body(ftepp_t *ftepp, ppmacro *macro) while (ftepp->token != TOKEN_EOL && ftepp->token < TOKEN_EOF) { ptok = pptoken_make(ftepp); vec_push(macro->output, ptok); - ftepp_next(ftepp); - if (!ftepp_skipspace(ftepp)) - return false; } if (ftepp->token != TOKEN_EOL) { ftepp_error(ftepp, "unexpected junk after macro or unexpected end of file"); -- 2.39.2