diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-06-01 20:35:54 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-06-01 20:35:54 -0700 |
commit | 51b5284d6a252402abd054175f5fde11e88c2b54 (patch) | |
tree | a1f7bd79d3dba7b5e87d1fbb1e107136ec2a77e3 /lib.c | |
parent | cd8cf4f8fd827e428c53f2e6d7fcce5cd9727e7f (diff) | |
download | txr-51b5284d6a252402abd054175f5fde11e88c2b54.tar.gz txr-51b5284d6a252402abd054175f5fde11e88c2b54.tar.bz2 txr-51b5284d6a252402abd054175f5fde11e88c2b54.zip |
ldiff uses equal for all non-list arguments.
* lib.c (ldiff): Rather than checking specifically for
strings and vectors to apply the special case behavior
(comparison using equal), test specifically for lists and
apply the traditional behavior. Every other object,
not just strings and vectors, gets the altered behavior.
* txr.1: Changed text in TXR Lisp introduction which touches
on ldiff, and wording fix under ldiff.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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); } |