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:
parent
6b5f631198
commit
9f0de4e301
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue