diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-06-04 06:36:38 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-06-04 06:36:38 -0700 |
commit | 926d939de04f5c13d856b93b949302273cdf8923 (patch) | |
tree | 24355ef5bbbbb610b9b77aa28ad1588fb4528832 /eval.c | |
parent | c988eab530b2efc3d69a55835c32e2312d3870f1 (diff) | |
download | txr-926d939de04f5c13d856b93b949302273cdf8923.tar.gz txr-926d939de04f5c13d856b93b949302273cdf8923.tar.bz2 txr-926d939de04f5c13d856b93b949302273cdf8923.zip |
maprod: bugfix: not reducing to mapcar.
The one list case of maprod reduces to mappend rather than
mapcar, so that [maprod identity '(1 2 3)] fails instead
of producing (1 2 3).
* eval.c (prod_common): Take pointer to mapping function to
use in one-list case, and use it.
(maprodv): Pass mapcarv to prod_common.
(maprendv): Pass mappendv to prod_common.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -5440,12 +5440,13 @@ static val mapdov(val fun, struct args *lists) } static val prod_common(val fun, struct args *lists, - loc (*collect_fptr)(loc ptail, val obj)) + loc (*collect_fn)(loc ptail, val obj), + val (*mapv_fn)(val fun, struct args *lists)) { if (!args_more(lists, 0)) { return nil; } else if (!args_two_more(lists, 0)) { - return mappendv(fun, lists); + return mapv_fn(fun, lists); } else { cnum argc = args_count(lists), i; list_collect_decl (out, ptail); @@ -5466,7 +5467,7 @@ static val prod_common(val fun, struct args *lists, args_fun->arg[i] = iter_item(args_work->arg[i]); args_fun->fill = argc; - ptail = collect_fptr(ptail, generic_funcall(fun, args_fun)); + ptail = collect_fn(ptail, generic_funcall(fun, args_fun)); for (i = argc - 1; ; i--) { val step_i = iter_step(args_work->arg[i]); @@ -5486,12 +5487,12 @@ static val prod_common(val fun, struct args *lists, val maprodv(val fun, struct args *lists) { - return prod_common(fun, lists, list_collect); + return prod_common(fun, lists, list_collect, mapcarv); } val maprendv(val fun, struct args *lists) { - return prod_common(fun, lists, list_collect_append); + return prod_common(fun, lists, list_collect_append, mappendv); } static val symbol_value(val sym) |