include: guard the actual inclusion with ftepp->output_on so that include inside #if 0 doesn't happen

This commit is contained in:
Wolfgang Bumiller 2013-02-11 12:13:27 +01:00
parent 3e3b8993aa
commit 1dfd375738

View file

@ -1379,6 +1379,11 @@ static bool ftepp_include(ftepp_t *ftepp)
return false;
}
if (!ftepp->output_on) {
ftepp_next(ftepp);
return true;
}
ctx = ftepp_ctx(ftepp);
unescape(ftepp_tokval(ftepp), ftepp_tokval(ftepp));