diff --git a/src/compile.c b/src/compile.c index fe55cf5..72c5374 100644 --- a/src/compile.c +++ b/src/compile.c @@ -91,7 +91,7 @@ void compile_genexec(char** result, tSyntaxElement* se){ if (token != NULL) { - string_append(result,token->content.string); + string_append(result,compile_expression(token)); if (token->next != NULL) string_append(result,",");