]> git.eshelyaron.com Git - emacs.git/commitdiff
(FRAME_EXTERNAL_MENU_BAR) [!USE_X_TOOLKIT]: Give zero.
authorRichard M. Stallman <rms@gnu.org>
Wed, 13 Jul 1994 04:15:52 +0000 (04:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 13 Jul 1994 04:15:52 +0000 (04:15 +0000)
src/frame.h

index 4933b4d649bf809924f5acfb053f7b1e0d3ed229..4c29c839897e00786e50d6acd423de75338c4a72 100644 (file)
@@ -265,7 +265,11 @@ typedef struct frame *FRAME_PTR;
 #define FRAME_NEW_HEIGHT(f) (f)->new_height
 #define FRAME_NEW_WIDTH(f) (f)->new_width
 #define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines
+#ifdef USE_X_TOOLKIT
 #define FRAME_EXTERNAL_MENU_BAR(f) (f)->external_menu_bar
+#else
+#define FRAME_EXTERNAL_MENU_BAR(f) 0
+#endif
 #define FRAME_CURSOR_X(f) (f)->cursor_x
 #define FRAME_CURSOR_Y(f) (f)->cursor_y
 #define FRAME_VISIBLE_P(f) ((f)->visible != 0)