aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-10 15:23:06 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-10 15:23:06 -0500
commit4e545c67985299dabc2a061160e126068d43541e (patch)
treef3b57ff6abd221894f01a4b6b85c068197b83254 /compile.c
parent930c09f46d1e249fc889e8f1179046a48c1eaf32 (diff)
Better string parsing.
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c3
1 files changed, 0 insertions, 3 deletions
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)