* xdisp.c (handle_display_prop): Respect overlay window property.

This commit is contained in:
Kim F. Storm 2005-09-07 21:59:36 +00:00
parent 6e5395f285
commit d9eef135dc

View file

@ -3428,7 +3428,7 @@ handle_display_prop (it)
}
else
{
object = it->w->buffer;
XSETWINDOW (object, it->w);
position = &it->current.pos;
}
@ -3449,6 +3449,9 @@ handle_display_prop (it)
if (NILP (prop))
return HANDLED_NORMALLY;
if (!STRINGP (it->string))
object = it->w->buffer;
if (CONSP (prop)
/* Simple properties. */
&& !EQ (XCAR (prop), Qimage)