diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-01-15 19:38:21 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-01-15 19:38:21 -0800 |
commit | de2c2b47f9c0858f785cafc276104377a7357630 (patch) | |
tree | 9f8f38a26916b52ea8c6711a85111af89098f2a0 /match.c | |
parent | b6c30203f87937861faeda6674911c32d764b2c7 (diff) | |
download | txr-de2c2b47f9c0858f785cafc276104377a7357630.tar.gz txr-de2c2b47f9c0858f785cafc276104377a7357630.tar.bz2 txr-de2c2b47f9c0858f785cafc276104377a7357630.zip |
Gather bugfix: support empty :vars.
* match.c (v_gather): Use getplist_f to distinguish the :vars
nil case just like v_collect does. A :vars nil gather could be
useful; it says none of the variables are strictly required.
In any case, it is not correct to treat :vars nil as if :vars
weren't there.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2596,7 +2596,10 @@ static val v_gather(match_files_ctx *c) val specs = copy_list(second(first_spec)); val args = third(first_spec); val until_last = fourth(first_spec); - val vars = vars_to_bindings(specline, getplist(args, vars_k), c->bindings); + val have_vars; + val vars = vars_to_bindings(specline, + getplist_f(args, vars_k, mkcloc(have_vars)), + c->bindings); while (specs && c->data) { list_collect_decl (new_specs, ptail); @@ -2669,7 +2672,7 @@ static val v_gather(match_files_ctx *c) } } - if (vars) { + if (have_vars) { val iter; for (iter = vars; iter != nil; iter = cdr(iter)) { |