summaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-03-15 22:46:47 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-03-15 22:46:47 -0700
commitbdb1339f8b042fdf752f3c5503371c42512d223e (patch)
tree9a6977165b0d8b862216252532b8ad4d139992ab /match.c
parentd4dccc67dc91aa0ed60820cbb006658f99d647bf (diff)
downloadtxr-bdb1339f8b042fdf752f3c5503371c42512d223e.tar.gz
txr-bdb1339f8b042fdf752f3c5503371c42512d223e.tar.bz2
txr-bdb1339f8b042fdf752f3c5503371c42512d223e.zip
Version 61txr-61
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * eval.c (op_modplace): Fix warning about uninitialized variable. No bug. * filter.c: gcc compilation regresion: missing <stdio.h> breaks inclusion of "stream.h" header. Strangely, didn't show up when configured for compiling with g++ on Ubuntu. * match.c (match_filter): Fixed ununsed variable warning. * txr.vim: Bunch of missing keywords added. * dep.mk: Regenerated.
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 24d7a3f9..f381dcd4 100644
--- a/match.c
+++ b/match.c
@@ -3626,7 +3626,7 @@ val match_filter(val name, val arg, val other_args)
val match_fun(val name, val args, val input, val files)
{
val spec = cons(cons(cons(name, args), nil), nil);
- cons_bind (in_spec, in_bindings, uw_get_match_context());
+ val in_bindings = cdr(uw_get_match_context());
val data = if3(streamp(input),
lazy_stream_cons(input),
input);