fix processing not being done on heredocuments

This commit is contained in:
zawz 2021-06-29 15:35:13 +02:00
parent 0be14815fa
commit 767302dd56

View file

@ -30,6 +30,7 @@ void recurse(bool (&fct)(_obj*, Args...), _obj* o, Args... args)
{ {
redirect* t = dynamic_cast<redirect*>(o); redirect* t = dynamic_cast<redirect*>(o);
recurse(fct, t->target, args...); recurse(fct, t->target, args...);
recurse(fct, t->here_document, args...);
break; break;
} }
case _obj::_arg : case _obj::_arg :