changeset 3995:cdab67a10461

* intervals.c (intervals_equal): Test the return value of Fequal against Qnil, not 0.
author Jim Blandy <jimb@redhat.com>
date Mon, 05 Jul 1993 07:57:34 +0000
parents df443e5f391e
children b9bdcf862c67
files src/intervals.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/intervals.c	Mon Jul 05 07:45:43 1993 +0000
+++ b/src/intervals.c	Mon Jul 05 07:57:34 1993 +0000
@@ -159,7 +159,7 @@
 
       /* 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);