From 742f715d96986d8c3e9198579d5de5f1a65cbe0a Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 5 May 1994 06:31:28 +0000 Subject: [PATCH] (xmenu_show): Disallow empty menus. --- src/xmenu.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/xmenu.c b/src/xmenu.c index 7764ce3cd83..c22d258cbd1 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -1399,6 +1399,11 @@ xmenu_show (f, x, y, menubarp, keymaps, title, error) *error = NULL; + if (menu_items_used <= MENU_ITEMS_PANE_LENGTH) + { + *error = "Empty menu"; + return Qnil; + } this_menu_bar_item_beg = -1; this_menu_bar_item_end = -1; last_menu_bar_item_end = -1; @@ -2010,6 +2015,12 @@ xmenu_show (f, x, y, menubarp, keymaps, title, error) if (menu_items_n_panes == 0) return Qnil; + if (menu_items_used <= MENU_ITEMS_PANE_LENGTH) + { + *error = "Empty menu"; + return Qnil; + } + /* Figure out which root window F is on. */ XGetGeometry (x_current_display, FRAME_X_WINDOW (f), &root, &dummy_int, &dummy_int, &dummy_uint, &dummy_uint, -- 2.39.5