diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index f5a8f2eabf8..47246d0690f 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -20338,6 +20338,12 @@ try_window_id (struct window *w) | |||
| 20338 | 20338 | ||
| 20339 | if (! init_to_row_end (&it, w, last_unchanged_at_beg_row)) | 20339 | if (! init_to_row_end (&it, w, last_unchanged_at_beg_row)) |
| 20340 | GIVE_UP (18); | 20340 | GIVE_UP (18); |
| 20341 | /* Give up if the row starts with a display property that draws | ||
| 20342 | on the fringes, since that could prevent correct display of | ||
| 20343 | line-prefix and wrap-prefix. */ | ||
| 20344 | if (it.sp > 1 | ||
| 20345 | && it.method == GET_FROM_IMAGE && it.image_id == -1) | ||
| 20346 | GIVE_UP (26); | ||
| 20341 | start_pos = it.current.pos; | 20347 | start_pos = it.current.pos; |
| 20342 | 20348 | ||
| 20343 | /* Start displaying new lines in the desired matrix at the same | 20349 | /* Start displaying new lines in the desired matrix at the same |