diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-07-03 07:47:18 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-07-03 07:47:18 -0700 |
commit | 578a99566965396df51623eb701dc3d76793c3ea (patch) | |
tree | d1138e43a4db92dbc8802cfbdbdb413cb434fc29 | |
parent | 8326cdd3dcfeec2bb6fb3f6747879c3dd19b91bd (diff) | |
download | txr-578a99566965396df51623eb701dc3d76793c3ea.tar.gz txr-578a99566965396df51623eb701dc3d76793c3ea.tar.bz2 txr-578a99566965396df51623eb701dc3d76793c3ea.zip |
* eval.c (apf, ipf): Bugfix: do_apf and do_ipf
should be registered as variadic functions.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | eval.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-07-03 Kaz Kylheku <kaz@kylheku.com> + + * eval.c (apf, ipf): Bugfix: do_apf and do_ipf + should be registered as variadic functions. + 2014-07-02 Kaz Kylheku <kaz@kylheku.com> Version 91. @@ -3182,7 +3182,7 @@ static val do_apf(val fun, val args) static val apf(val fun) { - return func_f1(fun, do_apf); + return func_f0v(fun, do_apf); } static val do_ipf(val fun, val args) @@ -3192,7 +3192,7 @@ static val do_ipf(val fun, val args) static val ipf(val fun) { - return func_f1(fun, do_ipf); + return func_f0v(fun, do_ipf); } static val prinl(val obj, val stream) |