aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-02 19:05:06 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-02 19:05:06 -0400
commit94761d9a5a2460b5a43489526e1f404611ddb750 (patch)
tree74cdb2fea33a6559cb97b017e32ed2001e5f1e31 /compile.c
parent185ddaca82c8b9ad28baccc9879f48a50cc5ed8b (diff)
Fix some stuff
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index 0bc09c74..50e39fe8 100644
--- a/compile.c
+++ b/compile.c
@@ -328,7 +328,6 @@ CORD compile_statement(env_t *env, ast_t *ast)
uint8_t *norm = u8_normalize(UNINORM_NFD, (uint8_t*)raw, strlen((char*)raw)+1, buf, &norm_len);
assert(norm[norm_len-1] == 0);
output = CORD_from_char_star((char*)norm);
- CORD_printf("OUTPUT: %r\n", output);
if (norm && norm != buf) free(norm);
}
@@ -595,7 +594,7 @@ CORD compile_statement(env_t *env, ast_t *ast)
return CORD_all(lhs, " ^= ", rhs, ";");
case BINOP_CONCAT: {
if (lhs_t->tag == TextType) {
- return CORD_all(lhs, " = CORD_cat(", lhs, ", ", rhs, ");");
+ return CORD_all(lhs, " = Text$concat(", lhs, ", ", rhs, ");");
} else if (lhs_t->tag == ArrayType) {
CORD padded_item_size = CORD_asprintf("%ld", padded_type_size(Match(lhs_t, ArrayType)->item_type));
if (promote(env, &rhs, rhs_t, Match(lhs_t, ArrayType)->item_type)) {