diff options
-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) |