From: Po Lu Date: Mon, 7 Aug 2023 13:14:53 +0000 (+0800) Subject: Fix mouse face display bug on MS-DOS X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72a606bb275b91845febd84c52897be8b8b0d877;p=emacs.git Fix mouse face display bug on MS-DOS * src/msdos.c (tty_draw_row_with_mouse_face): Tweak coordinates to reflect the number of glyphs used within the margin area. --- diff --git a/src/msdos.c b/src/msdos.c index 75a39045cee..1b7f2d4ae21 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -979,11 +979,15 @@ tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row, if (hl == DRAW_MOUSE_FACE) { int vpos = row->y + WINDOW_TOP_EDGE_Y (w); - int kstart = start_hpos + WINDOW_LEFT_EDGE_X (w); + int kstart = (start_hpos + WINDOW_LEFT_EDGE_X (w) + + row->used[LEFT_MARGIN_AREA]); int nglyphs = end_hpos - start_hpos; int offset = ScreenPrimary + 2*(vpos*screen_size_X + kstart) + 1; int start_offset = offset; + if (end_hpos >= row->used[TEXT_AREA]) + nglyphs = row->used[TEXT_AREA] - start_hpos; + if (tty->termscript) fprintf (tty->termscript, "\n", kstart, kstart + nglyphs - 1, vpos); @@ -1021,6 +1025,9 @@ tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row, temporarily move cursor coordinates to the beginning of the highlight region. */ new_pos_X = start_hpos + WINDOW_LEFT_EDGE_X (w); + /* The coordinates supplied by the caller are relative to the + text area, not the window itself. */ + new_pos_X += row->used[LEFT_MARGIN_AREA]; new_pos_Y = row->y + WINDOW_TOP_EDGE_Y (w); if (tty->termscript)