summaryrefslogtreecommitdiff
path: root/src/intervals.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-07-05 07:57:34 +0000
committerJim Blandy <jimb@redhat.com>1993-07-05 07:57:34 +0000
commit50518d7878d915066a3c4c68123db96f465bcc78 (patch)
tree5f2cb491dd0ed2a93d1b08d0dd94c858440e38da /src/intervals.c
parent498894d1938502ed41cac51b32268f0716d34785 (diff)
downloademacs-50518d7878d915066a3c4c68123db96f465bcc78.tar.gz
* intervals.c (intervals_equal): Test the return value of Fequal
against Qnil, not 0.
Diffstat (limited to 'src/intervals.c')
-rw-r--r--src/intervals.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 3d30e21c3ee..1e57fd15632 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -159,7 +159,7 @@ intervals_equal (i0, i1)
/* i0 and i1 both have sym, but it has different values in each */
i0_cdr = Fcdr (i0_cdr);
- if (! Fequal (i1_val, Fcar (i0_cdr)))
+ if (NILP (Fequal (i1_val, Fcar (i0_cdr))))
return 0;
i0_cdr = Fcdr (i0_cdr);