* xdisp.c (handle_display_prop): Respect overlay window property.
This commit is contained in:
parent
6e5395f285
commit
d9eef135dc
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue