From 4e545c67985299dabc2a061160e126068d43541e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 10 Feb 2024 15:23:06 -0500 Subject: Better string parsing. --- compile.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 7193b5ae..97a7d21c 100644 --- a/compile.c +++ b/compile.c @@ -130,9 +130,6 @@ CORD compile(ast_t *ast) } return code; } - case Interp: { - return CORD_asprintf("__cord(%r)", compile(Match(ast, Interp)->value)); - } case Block: { ast_list_t *stmts = Match(ast, Block)->statements; if (stmts && !stmts->next) -- cgit v1.2.3