diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-04-11 17:12:06 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-04-11 17:12:06 -0700 |
commit | fe1324ffb8d64e33036563c6e64a03df4bf6adda (patch) | |
tree | 9dedf781c6acdccb5a2b73ee2de93f38f18d7dc5 /tests/018 | |
parent | bb550cd603adf92c5389a3aff6db96353cdf6339 (diff) | |
download | txr-fe1324ffb8d64e33036563c6e64a03df4bf6adda.tar.gz txr-fe1324ffb8d64e33036563c6e64a03df4bf6adda.tar.bz2 txr-fe1324ffb8d64e33036563c6e64a03df4bf6adda.zip |
compiler: bugfix: rest parameter in inline lambda
* share/txr/stdlib/compiler.tl (lambda-apply-transform): Do
not take all of the fixed arguments and rest expression to be
the trailing list. Rather, skip as many elements from these
as the function has fixed parameters. E.g. if there
are two fixed parameters as in (lambda (a b . c)) and the
call specifies four fixed parameters and a trailing x
(1 2 3 4 . x) then the rest argument c must be (list* 3 4 . x)
and not (list* 1 2 3 4 . x).
Diffstat (limited to 'tests/018')
0 files changed, 0 insertions, 0 deletions