aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lisp.h b/src/lisp.h
index ad249a2c66b..386d9f6eb94 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1649,7 +1649,6 @@ typedef struct {
1649 int mouse_face_beg_x, mouse_face_beg_y; 1649 int mouse_face_beg_x, mouse_face_beg_y;
1650 int mouse_face_end_row, mouse_face_end_col; 1650 int mouse_face_end_row, mouse_face_end_col;
1651 int mouse_face_end_x, mouse_face_end_y; 1651 int mouse_face_end_x, mouse_face_end_y;
1652 int mouse_face_past_end;
1653 Lisp_Object mouse_face_window; 1652 Lisp_Object mouse_face_window;
1654 int mouse_face_face_id; 1653 int mouse_face_face_id;
1655 Lisp_Object mouse_face_overlay; 1654 Lisp_Object mouse_face_overlay;
@@ -1659,13 +1658,15 @@ typedef struct {
1659 struct frame *mouse_face_mouse_frame; 1658 struct frame *mouse_face_mouse_frame;
1660 int mouse_face_mouse_x, mouse_face_mouse_y; 1659 int mouse_face_mouse_x, mouse_face_mouse_y;
1661 1660
1661 /* Nonzero if part of the text currently shown in
1662 its mouse-face is beyond the window end. */
1663 unsigned mouse_face_past_end : 1;
1664
1662 /* Nonzero means defer mouse-motion highlighting. */ 1665 /* Nonzero means defer mouse-motion highlighting. */
1663 int mouse_face_defer; 1666 unsigned mouse_face_defer : 1;
1664 1667
1665 /* Nonzero means that the mouse highlight should not be shown. */ 1668 /* Nonzero means that the mouse highlight should not be shown. */
1666 int mouse_face_hidden; 1669 unsigned mouse_face_hidden : 1;
1667
1668 int mouse_face_image_state;
1669} Mouse_HLInfo; 1670} Mouse_HLInfo;
1670 1671
1671/* Data type checking. */ 1672/* Data type checking. */