summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-04 19:55:24 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-04 19:55:24 -0800
commitdd40488f746cab80f33a4a30508afc4d7ace1516 (patch)
tree16781dc4fab9b9968b0ce0d6ec45a154ad03a5dc
parentadd776841ac5f54e4333da43b5f6db8e3638643a (diff)
downloadtxr-dd40488f746cab80f33a4a30508afc4d7ace1516.tar.gz
txr-dd40488f746cab80f33a4a30508afc4d7ace1516.tar.bz2
txr-dd40488f746cab80f33a4a30508afc4d7ace1516.zip
Fix broken LSTR and FUN cases in equal.
-rw-r--r--ChangeLog4
-rw-r--r--lib.c16
2 files changed, 13 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 14cf0b8c..5dcad00e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/lib.c b/lib.c
index 7bf5fb32..3554264d 100644
--- a/lib.c
+++ b/lib.c
@@ -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: