diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-03-16 06:21:33 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-03-16 06:21:33 -0700 |
commit | c1e94e69d1bea54330bd94371b101828b31e9add (patch) | |
tree | 5e9aa4f389f1075bca912417b6a43d970d4dc1e9 /match.c | |
parent | 75891193484bd467e16ca2ef035908013d9b0d30 (diff) | |
download | txr-c1e94e69d1bea54330bd94371b101828b31e9add.tar.gz txr-c1e94e69d1bea54330bd94371b101828b31e9add.tar.bz2 txr-c1e94e69d1bea54330bd94371b101828b31e9add.zip |
Bugfix and @(repeat) and @(rep).
* match.c (extract_bindings): Do not destructively
append to vars, because that's a piece of syntax.
The return value of extract_vars is freshly allocated,
though, so we can fix this by reversing the arguments.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1617,7 +1617,7 @@ static val extract_vars(val output_spec) static val extract_bindings(val bindings, val output_spec, val vars) { list_collect_decl (bindings_out, ptail); - val var_list = nappend2(vars, extract_vars(output_spec)); + val var_list = nappend2(extract_vars(output_spec), vars); for (; bindings; bindings = cdr(bindings)) { val binding = car(bindings); |