diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-23 12:42:10 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-23 12:42:10 -0400 |
| commit | a1978752141835c386012fff15ceb36261f37997 (patch) | |
| tree | 988084e503a9118ceb48b99b8c8cb0b3453f172b /compile.c | |
| parent | dceb9255736c69538293ee551272cda1b03a9fd3 (diff) | |
Bugfix for say() when length is >512, and added back the `newline`
optional parameter (default=yes)
Diffstat (limited to 'compile.c')
| -rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -832,7 +832,7 @@ CORD compile_statement(env_t *env, ast_t *ast) } if (chunk->next) code = CORD_cat(code, ", "); } - return CORD_cat(code, "));"); + return CORD_cat(code, "), yes);"); } case Return: { if (!env->fn_ctx) code_err(ast, "This return statement is not inside any function"); |
