aboutsummaryrefslogtreecommitdiff
path: root/src/lyn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lyn.c')
-rw-r--r--src/lyn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lyn.c b/src/lyn.c
index b74e19f..2eb8169 100644
--- a/src/lyn.c
+++ b/src/lyn.c
@@ -13,7 +13,7 @@
static int eval_group(struct lyn *lyn, struct lyn_value value)
{
- fprintf(lyn->output, "(begin");
+ fprintf(lyn->output, "((lambda () (begin");
lyn->depth++;
foreach_vec(gi, value.args) {
@@ -24,7 +24,7 @@ static int eval_group(struct lyn *lyn, struct lyn_value value)
fprintf(lyn->output, ")");
}
- fprintf(lyn->output, "\n%*s)", 2 * lyn->depth, " ");
+ fprintf(lyn->output, "\n%*s)))", 2 * lyn->depth, " ");
lyn->depth--;
return 0;