]> git.eshelyaron.com Git - emacs.git/commitdiff
(internal_equal): When comparing strings, ignore text props.
authorRichard M. Stallman <rms@gnu.org>
Fri, 23 May 1997 17:32:41 +0000 (17:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 23 May 1997 17:32:41 +0000 (17:32 +0000)
Friedman offers to fix anything that has trouble due to this.

src/fns.c

index a7bcc28c3dd14bfe24f72b7041d997fb22dbd0a0..d4a48d2dc8fc910e14f7021af7436070c4654faf 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1159,13 +1159,6 @@ internal_equal (o1, o2, depth)
       if (bcmp (XSTRING (o1)->data, XSTRING (o2)->data,
                XSTRING (o1)->size))
        return 0;
-#ifdef USE_TEXT_PROPERTIES
-      /* If the strings have intervals, verify they match;
-        if not, they are unequal.  */
-      if ((XSTRING (o1)->intervals != 0 || XSTRING (o2)->intervals != 0)
-         && ! compare_string_intervals (o1, o2))
-       return 0;
-#endif
       return 1;
     }
   return 0;