diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-06-17 22:14:48 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-06-17 22:14:48 -0700 |
commit | a3380a6ce354fc956635837d3fbca39b730d73aa (patch) | |
tree | 1f3d038022032f816f47d7a5278d2def3041ee16 /ChangeLog | |
parent | f15dcf205cb43804140db1f59314191e14d7ec65 (diff) | |
download | txr-a3380a6ce354fc956635837d3fbca39b730d73aa.tar.gz txr-a3380a6ce354fc956635837d3fbca39b730d73aa.tar.bz2 txr-a3380a6ce354fc956635837d3fbca39b730d73aa.zip |
* lib.c (generic_funcall): Bugfixes: support symbols.
Removed dubious statement which clamps nargs to the number
of fixed parameters, breaking variadic calls.
Test case: (mapcar 'list '(1 2)) -> ((1) (2))
Note: generic_funcall is only used when non-function objects
are used as functions; variadic funcalls were not broken.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1,5 +1,21 @@ 2014-06-17 Kaz Kylheku <kaz@kylheku.com> + * lib.c (generic_funcall): Bugfixes: support symbols. + Removed dubious statement which clamps nargs to the number + of fixed parameters, breaking variadic calls. + Test case: (mapcar 'list '(1 2)) -> ((1) (2)) + Note: generic_funcall is only used when non-function objects + are used as functions; variadic funcalls were not broken. + +2014-06-17 Kaz Kylheku <kaz@kylheku.com> + + * lib.c (generic_funcall): Bugfixes: support symbols. + Removed dubious statement which clamps nargs to the number + of fixed parameters, breaking variadic calls. + Test case: (mapcar 'list '(1 2)) -> ((1) (2)) + +2014-06-17 Kaz Kylheku <kaz@kylheku.com> + * txr.1: Fix broken examples for some and none functions. 2014-06-17 Kaz Kylheku <kaz@kylheku.com> |