From 1dfd375738891d188e52e0f55c2e2575370fcd29 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 11 Feb 2013 12:13:27 +0100 Subject: [PATCH] include: guard the actual inclusion with ftepp->output_on so that include inside #if 0 doesn't happen --- ftepp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ftepp.c b/ftepp.c index 27e3afe..2ce9f47 100644 --- a/ftepp.c +++ b/ftepp.c @@ -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)); -- 2.39.2