From 767302dd56f2e7440f695d8a20adf5e0951f87a2 Mon Sep 17 00:00:00 2001 From: zawz Date: Tue, 29 Jun 2021 15:35:13 +0200 Subject: [PATCH] fix processing not being done on heredocuments --- include/recursive.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/recursive.hpp b/include/recursive.hpp index baacd97..8683c10 100644 --- a/include/recursive.hpp +++ b/include/recursive.hpp @@ -30,6 +30,7 @@ void recurse(bool (&fct)(_obj*, Args...), _obj* o, Args... args) { redirect* t = dynamic_cast(o); recurse(fct, t->target, args...); + recurse(fct, t->here_document, args...); break; } case _obj::_arg :