fix processing not being done on heredocuments
This commit is contained in:
parent
0be14815fa
commit
767302dd56
1 changed files with 1 additions and 0 deletions
|
|
@ -30,6 +30,7 @@ void recurse(bool (&fct)(_obj*, Args...), _obj* o, Args... args)
|
|||
{
|
||||
redirect* t = dynamic_cast<redirect*>(o);
|
||||
recurse(fct, t->target, args...);
|
||||
recurse(fct, t->here_document, args...);
|
||||
break;
|
||||
}
|
||||
case _obj::_arg :
|
||||
|
|
|
|||
Loading…
Reference in a new issue