# HG changeset patch # User Richard M. Stallman # Date 816842768 0 # Node ID 4fbb17b559bf61b2316ee6c0c2d5e2a372695df9 # Parent 493156a0ad856b96725755bce28676d4a2e2ff23 (show_mouse_face): When clearing cursor, use proper column range. diff -r 493156a0ad85 -r 4fbb17b559bf src/xterm.c --- a/src/xterm.c Sun Nov 19 23:25:19 1995 +0000 +++ b/src/xterm.c Mon Nov 20 04:46:08 1995 +0000 @@ -2182,8 +2182,8 @@ /* If the cursor's in the text we are about to rewrite, turn the cursor off. */ if (i == curs_y - && curs_x >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col - 1 - && curs_x <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col) + && curs_x >= column - 1 + && curs_x <= endcolumn) { x_display_cursor (f, 0); cursor_off = 1;