aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-10 15:33:35 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-10 15:33:35 -0500
commit2c9ee0c629834bea159f033db2d9a42a4f8110a2 (patch)
treeea5cc103996a64b7c34355a7b138b8fa28ac1b50 /parse.c
parent4e545c67985299dabc2a061160e126068d43541e (diff)
String improvements
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 75a0d1e2..d7d8ff74 100644
--- a/parse.c
+++ b/parse.c
@@ -922,7 +922,6 @@ PARSER(parse_string) {
++pos;
spaces(&pos);
for (ast_t *interp; (interp=optional(ctx, &pos, parse_expr)); spaces(&pos)) {
- interp = WrapAST(interp, FunctionCall, .fn=WrapAST(interp, Var, .name="__cord"), .args=new(ast_list_t, .ast=interp));
chunks = new(ast_list_t, .ast=interp, .next=chunks);
chunk_start = pos;
}