From: Richard M. Stallman Date: Sun, 3 Mar 1996 22:47:53 +0000 (+0000) Subject: Put most of file into HAVE_MENUS conditional. X-Git-Tag: emacs-19.34~1119 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e659e4c3a05511479bc5376cd56178a95513824;p=emacs.git Put most of file into HAVE_MENUS conditional. (Fx_popup_menu): Put parts into HAVE_MENUS conditionals. --- diff --git a/src/xmenu.c b/src/xmenu.c index 7a63229e152..9e85afdfcda 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -771,6 +771,7 @@ cached information about equivalent key sequences.") int for_click = 0; struct gcpro gcpro1; +#ifdef HAVE_MENUS if (! NILP (position)) { check_x (); @@ -844,6 +845,7 @@ cached information about equivalent key sequences.") xpos += XINT (x); ypos += XINT (y); } +#endif /* HAVE_MENUS */ title = Qnil; GCPRO1 (title); @@ -923,6 +925,7 @@ cached information about equivalent key sequences.") return Qnil; } +#ifdef HAVE_MENUS /* Display them in a menu. */ BLOCK_INPUT; @@ -933,11 +936,14 @@ cached information about equivalent key sequences.") discard_menu_items (); UNGCPRO; +#endif /* HAVE_MENUS */ if (error_name) error (error_name); return selection; } +#ifdef HAVE_MENUS + DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0, "Pop up a dialog box and return user's selection.\n\ POSITION specifies which frame to use.\n\ @@ -2631,6 +2637,8 @@ xmenu_show (f, x, y, for_click, keymaps, title, error) } #endif /* not USE_X_TOOLKIT */ + +#endif /* HAVE_MENUS */ syms_of_xmenu () { @@ -2646,5 +2654,7 @@ syms_of_xmenu () #endif defsubr (&Sx_popup_menu); +#ifdef HAVE_MENUS defsubr (&Sx_popup_dialog); +#endif }