1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

(notice_overwritten_cursor): Take care of end < 0 case.

This commit is contained in:
Jason Rumney 2001-11-17 18:09:27 +00:00
parent 6b5f631198
commit 9f0de4e301

View file

@ -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;
}