diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-04 19:55:24 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-04 19:55:24 -0800 |
commit | dd40488f746cab80f33a4a30508afc4d7ace1516 (patch) | |
tree | 16781dc4fab9b9968b0ce0d6ec45a154ad03a5dc | |
parent | add776841ac5f54e4333da43b5f6db8e3638643a (diff) | |
download | txr-dd40488f746cab80f33a4a30508afc4d7ace1516.tar.gz txr-dd40488f746cab80f33a4a30508afc4d7ace1516.tar.bz2 txr-dd40488f746cab80f33a4a30508afc4d7ace1516.zip |
Fix broken LSTR and FUN cases in equal.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib.c | 16 |
2 files changed, 13 insertions, 7 deletions
@@ -1,5 +1,9 @@ 2009-10-22 Kaz Kylheku <kkylheku@gmail.com> + * lib.c (equal): Fix broken LSTR and FUN cases. + +2009-10-22 Kaz Kylheku <kkylheku@gmail.com> + Got "make tests" working in separate build directory, with .out files going to local tests/ tree. @@ -412,9 +412,12 @@ obj_t *equal(obj_t *left, obj_t *right) } return nil; case STR: - if (right->t.type == STR && - strcmp(left->st.str, right->st.str) == 0) - return t; + if (right->t.type == STR) + return strcmp(left->st.str, right->st.str) == 0 ? t : nil; + if (right->t.type == LSTR) { + lazy_str_force(right); + return equal(left, right->ls.prefix); + } return nil; case CHR: if (right->t.type == CHR && @@ -430,7 +433,8 @@ obj_t *equal(obj_t *left, obj_t *right) return right == left ? t : nil; case FUN: if (right->t.type == FUN && - left->f.functype == right->f.functype) + left->f.functype == right->f.functype && + equal(left->f.env, right->f.env)) { switch (left->f.functype) { case FINTERP: return (equal(left->f.f.interp_fun, right->f.f.interp_fun)); @@ -464,9 +468,7 @@ obj_t *equal(obj_t *left, obj_t *right) case LSTR: if (right->t.type == STR || right->t.type == LSTR) { lazy_str_force(left); - if (right->t.type == LSTR) - lazy_str_force(right); - return equal(left->ls.prefix, right->ls.prefix); + return equal(left->ls.prefix, right); } return nil; case COBJ: |