diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 5306533dd59..f81dfb6755a 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -1347,8 +1347,8 @@ pos_visible_p (w, charpos, x, y, rtop, rbot, exact_mode_line_heights_p) | |||
| 1347 | 1347 | ||
| 1348 | current_header_line_height = current_mode_line_height = -1; | 1348 | current_header_line_height = current_mode_line_height = -1; |
| 1349 | 1349 | ||
| 1350 | if (visible_p && w->hscroll > 0) | 1350 | if (visible_p && XFASTINT (w->hscroll) > 0) |
| 1351 | *x -= w->hscroll; | 1351 | *x -= XFASTINT (w->hscroll); |
| 1352 | 1352 | ||
| 1353 | return visible_p; | 1353 | return visible_p; |
| 1354 | } | 1354 | } |