aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index fd4654532e3..4e82a8092d4 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -11107,7 +11107,7 @@ notice_overwritten_cursor (w, start_x, end_x)
11107 && w->phys_cursor_on_p 11107 && w->phys_cursor_on_p
11108 && output_cursor.vpos == w->phys_cursor.vpos 11108 && output_cursor.vpos == w->phys_cursor.vpos
11109 && start_x <= w->phys_cursor.x 11109 && start_x <= w->phys_cursor.x
11110 && end_x > w->phys_cursor.x) 11110 && (end_x < 0 || end_x > w->phys_cursor.x))
11111 w->phys_cursor_on_p = 0; 11111 w->phys_cursor_on_p = 0;
11112} 11112}
11113 11113