summaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-03-16 06:21:33 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-03-16 06:21:33 -0700
commitc1e94e69d1bea54330bd94371b101828b31e9add (patch)
tree5e9aa4f389f1075bca912417b6a43d970d4dc1e9 /match.c
parent75891193484bd467e16ca2ef035908013d9b0d30 (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/match.c b/match.c
index 4fbac813..5c2ce188 100644
--- a/match.c
+++ b/match.c
@@ -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);