From d8636ace108df34034e7c7564d14420c0d7d7d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Tue, 11 Jun 2024 05:28:24 +0500 Subject: [PATCH] Fix something --- src/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,",");