diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-05-26 12:31:59 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-05-26 12:31:59 +0300 |
commit | eb3f6f01890259b11fa72b21aee4bf900abd18a9 (patch) | |
tree | 5e74acd317fd96956f2cbdb8839689df14e779b8 /src/xdisp.c | |
parent | 4446092afffb588fec435785b9c7bfa4acac20d1 (diff) | |
download | emacs-eb3f6f01890259b11fa72b21aee4bf900abd18a9.tar.gz |
Support mouse highlight on w32 text-mode frames.
src/xdisp.c (draw_row_with_mouse_face): Call
tty_draw_row_with_mouse_face for WINDOWSNT as well.
src/w32inevt.c (mouse_moved_to): When the mouse moves, call
note_mouse_highlight.
src/w32console.c: Include window.h.
(w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face): New
functions.
(initialize_w32_display): Initialize mouse-highlight data.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 0a25eab1cbc..794355af153 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -25832,7 +25832,7 @@ draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row, return; } #endif -#if defined (HAVE_GPM) || defined (MSDOS) +#if defined (HAVE_GPM) || defined (MSDOS) || defined (WINDOWSNT) tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw); #endif } |