From d129c4c2cbad1b117368f06613b30d4e61380d1b Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 17 May 1996 21:13:14 +0000 Subject: [PATCH] (display_menu_bar) [HAVE_NTGUI]: Enable the display of menus in --no-window mode on NT. --- src/xdisp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index e2d75f6ee2b..ed7de057d98 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -3251,7 +3251,8 @@ display_menu_bar (w) int i; #ifdef HAVE_NTGUI - return; + if (!NILP (Vwindow_system)) + return; #endif #ifdef USE_X_TOOLKIT -- 2.39.5