1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-20 18:17:20 +00:00

(FRAME_EXTERNAL_MENU_BAR) [!USE_X_TOOLKIT]: Give zero.

This commit is contained in:
Richard M. Stallman 1994-07-13 04:15:52 +00:00
parent eb51e66563
commit 4c8888a0c8

View 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)