aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorJason Rumney <[email protected]>2001-11-17 18:09:27 +0000
committerJason Rumney <[email protected]>2001-11-17 18:09:27 +0000
commit9f0de4e301eb518291ae040a7f71af5e2b3f6c90 (patch)
treeb36154e2efd13c0f7fbade158284f246df5490be /src/xterm.c
parent6b5f6311986e1a7e8c83734deacbdfe4a708be8f (diff)
(notice_overwritten_cursor): Take care of end < 0 case.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index fd4654532e..4e82a8092d 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;
}