aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 578131a4005..20c7634fc3e 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -35537,6 +35537,16 @@ note_mouse_highlight (struct frame *f, int x, int y)
35537 w = XWINDOW (window); 35537 w = XWINDOW (window);
35538 frame_to_window_pixel_xy (w, &x, &y); 35538 frame_to_window_pixel_xy (w, &x, &y);
35539 35539
35540#if defined (HAVE_WINDOW_SYSTEM) && ! defined (HAVE_EXT_MENU_BAR)
35541 /* Handle menu-bar window differently since it doesn't display a
35542 buffer. */
35543 if (EQ (window, f->menu_bar_window))
35544 {
35545 cursor = FRAME_OUTPUT_DATA (f)->nontext_cursor;
35546 goto set_cursor;
35547 }
35548#endif
35549
35540#if defined (HAVE_WINDOW_SYSTEM) 35550#if defined (HAVE_WINDOW_SYSTEM)
35541 /* Handle tab-bar window differently since it doesn't display a 35551 /* Handle tab-bar window differently since it doesn't display a
35542 buffer. */ 35552 buffer. */