]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/keyboard.c: Fix build without window system
authorPo Lu <luangruo@yahoo.com>
Sun, 4 Jun 2023 12:11:40 +0000 (20:11 +0800)
committerPo Lu <luangruo@yahoo.com>
Sun, 4 Jun 2023 12:11:44 +0000 (20:11 +0800)
src/keyboard.c

index ec9a6dc712a1523e1d9d6b5aa06fdd5cd0554b33..116846611ce6bee8d2235c65791bef37e3713755 100644 (file)
@@ -5875,6 +5875,8 @@ coords_in_menu_bar_window (struct frame *f, int x, int y)
 
 #endif
 
+#ifdef HAVE_WINDOW_SYSTEM
+
 /* Return whether or not the coordinates X and Y are inside the
    tab-bar window of the given frame F.  */
 
@@ -5894,6 +5896,8 @@ coords_in_tab_bar_window (struct frame *f, int x, int y)
          && x <= WINDOW_RIGHT_EDGE_X (window));
 }
 
+#endif /* HAVE_WINDOW_SYSTEM */
+
 /* Given a struct input_event, build the lisp event which represents
    it.  If EVENT is 0, build a mouse movement event from the mouse
    movement buffer, which should have a movement event in it.