From 9f0de4e301eb518291ae040a7f71af5e2b3f6c90 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Sat, 17 Nov 2001 18:09:27 +0000 Subject: [PATCH] (notice_overwritten_cursor): Take care of end < 0 case. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) && w->phys_cursor_on_p && output_cursor.vpos == w->phys_cursor.vpos && start_x <= w->phys_cursor.x - && end_x > w->phys_cursor.x) + && (end_x < 0 || end_x > w->phys_cursor.x)) w->phys_cursor_on_p = 0; } -- 2.39.5