summaryrefslogtreecommitdiffstats
path: root/filter.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-02-16 17:24:19 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-02-16 17:24:19 -0800
commitdcd14af875e74e92379031076d48c526b57a06bf (patch)
treed3a18d837b98e5912b7e8913ecb242b4b8a6fbfd /filter.c
parentd7ba2b97d8c03bf47c25978d96fa055e7d11ba5a (diff)
downloadtxr-dcd14af875e74e92379031076d48c526b57a06bf.tar.gz
txr-dcd14af875e74e92379031076d48c526b57a06bf.tar.bz2
txr-dcd14af875e74e92379031076d48c526b57a06bf.zip
* match.c (match_funcall): Function renamed to match_filter.
* match.h (match_funcall): Declaration updated. * filter.c (get_filter): Updated.
Diffstat (limited to 'filter.c')
-rw-r--r--filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter.c b/filter.c
index 29378f48..a3b2cb65 100644
--- a/filter.c
+++ b/filter.c
@@ -141,7 +141,7 @@ val get_filter(val spec)
{
if (consp(spec)) {
if (car(spec) == fun_k) {
- return curry_123_2(func_n3(match_funcall), second(spec), rest(rest(spec)));
+ return curry_123_2(func_n3(match_filter), second(spec), rest(rest(spec)));
} else {
val filter_list = mapcar(func_n1(get_filter), spec);