1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(main): Call syms_of_xmenu if and only if HAVE_MENUS.

This commit is contained in:
Richard M. Stallman 1995-12-28 23:14:23 +00:00
parent e163fa7b85
commit 6c850f3cea

View file

@ -865,16 +865,16 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
#ifdef HAVE_X11
syms_of_xselect ();
#endif
#ifdef HAVE_X_MENU
syms_of_xmenu ();
#endif /* HAVE_X_MENU */
#endif /* HAVE_X_WINDOWS */
#if defined (MSDOS) && !defined (HAVE_X_WINDOWS)
syms_of_xfaces ();
syms_of_xmenu ();
#endif
#ifdef HAVE_MENUS
syms_of_xmenu ();
#endif /* HAVE_MENUS */
#ifdef HAVE_NTGUI
syms_of_win32term ();
syms_of_win32fns ();