From: Fred Pierresteguy Date: Thu, 24 Mar 1994 07:36:56 +0000 (+0000) Subject: (Fx_create_frame): Add USE_X_TOOLKIT conditional around the call to X-Git-Tag: emacs-19.34~9346 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=10bc4f1dc0408e9a64822e26213b558d82180b7d;p=emacs.git (Fx_create_frame): Add USE_X_TOOLKIT conditional around the call to initialize_frame_menubar. --- diff --git a/src/xfns.c b/src/xfns.c index fb788dd7f58..e5a71fdd666 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2136,8 +2136,10 @@ be shared by the new frame.") or making it visible won't work. */ Vframe_list = Fcons (frame, Vframe_list); +#ifdef USE_X_TOOLKIT /* Compute the size of the menubar and display it. */ initialize_frame_menubar (f); +#endif /* USE_X_TOOLKIT */ /* Make the window appear on the frame and enable display, unless the caller says not to. */