changeset 62938:3c0952cf4004

(note_mode_line_or_margin_highlight): Lisp_Object/int mixup.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 31 May 2005 21:54:52 +0000
parents 23f332ae21c8
children b92324fe807f
files src/xdisp.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Tue May 31 21:54:43 2005 +0000
+++ b/src/xdisp.c	Tue May 31 21:54:52 2005 +0000
@@ -21488,7 +21488,7 @@
 	       tmp_glyph->charpos >= XINT (b);
 	       tmp_glyph--, gpos++)
 	    {
-	      if (tmp_glyph->object != glyph->object)
+	      if (!EQ (tmp_glyph->object, glyph->object))
 		break;
 	    }
 
@@ -21501,7 +21501,7 @@
 	       tmp_glyph->charpos < XINT (e);
 	       tmp_glyph++, gseq_length++)
 	      {
-		if (tmp_glyph->object != glyph->object)
+		if (!EQ (tmp_glyph->object, glyph->object))
 		  break;
 	      }