summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.c11
-rw-r--r--txr.16
2 files changed, 8 insertions, 9 deletions
diff --git a/lib.c b/lib.c
index 92d218a6..cfa2d2bb 100644
--- a/lib.c
+++ b/lib.c
@@ -1298,17 +1298,16 @@ val ldiff(val list1, val list2)
list2 = nullify(list2);
switch (type(list2)) {
- case STR:
- case LIT:
- case LSTR:
- case VEC:
- while (list1 && !equal(list1, list2)) {
+ case NIL:
+ case CONS:
+ case LCONS:
+ while (list1 && list1 != list2) {
ptail = list_collect(ptail, car(list1));
list1 = cdr(list1);
}
break;
default:
- while (list1 && list1 != list2) {
+ while (list1 && !equal(list1, list2)) {
ptail = list_collect(ptail, car(list1));
list1 = cdr(list1);
}
diff --git a/txr.1 b/txr.1
index 6ba20ac0..39fdf4f7 100644
--- a/txr.1
+++ b/txr.1
@@ -10310,8 +10310,8 @@ can also be treated in the same way.
The
.code ldiff
function is also extended in a special way. When the right parameter
-is a string or vector, then it uses the equal equality test rather than eq
-for detecting the tail of the list.
+a non-list sequence, then it uses the equal equality test rather than eq for
+detecting the tail of the list.
.cblk
(ldiff "abcd" "cd") -> (#\ea #\eb)
@@ -15710,7 +15710,7 @@ then a copy of
.meta list
is returned.
-These functions also work more generally on sequences.
+This function also works more generally on sequences.
The
.meta list
and