fixed expand function

This commit is contained in:
Aidan 2020-06-29 00:10:54 -07:00
parent 2a2e5b4527
commit 2151b6c5d2
No known key found for this signature in database
GPG key ID: 327711E983899316
2 changed files with 48 additions and 1 deletions

View file

@ -33,7 +33,7 @@ func expand(input *ast.Token, vars ast.VarTable, funcs ast.FuncTable) *ast.Token
return input
}
return input.Expand()
return input.Eval(funcs, vars).Expand()
}
/* L_APPEND (append from repl)