summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index aba04b39..82eb4755 100644
--- a/lib.c
+++ b/lib.c
@@ -5998,7 +5998,7 @@ val set_diff(val list1, val list2, val testfun, val keyfun)
val item = car(list1);
val list1_key = funcall1(keyfun, item);
- if (!find(list1_key, list2, testfun, keyfun))
+ if (!member(list1_key, list2, testfun, keyfun))
ptail = list_collect(ptail, item);
}
}