From 166a76bc0a18f9b5294953264f98e887ce153320 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 3 Jul 2021 09:07:31 -0700 Subject: compiler: inline lambda: not creating rest param. * stdlib/compiler.tl (lambda-apply-transform): In one case, the add call is missing to actually emit the rest parameter. --- stdlib/compiler.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib') diff --git a/stdlib/compiler.tl b/stdlib/compiler.tl index 3d89abed..b1b3681a 100644 --- a/stdlib/compiler.tl +++ b/stdlib/compiler.tl @@ -2040,7 +2040,7 @@ ((and pars.rest apply-list-expr) (add ^(,pars.rest ,al-val))) (pars.rest - ^(,pars.rest nil)) + (add ^(,pars.rest nil))) (apply-list-expr (add ^(,ign-2 (if ,al-val (lambda-excess-apply-list)))))))) -- cgit v1.2.3