aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index ee78f290225..bc9a9fb5b45 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -1732,6 +1732,11 @@ set_frame_menubar (f, first_time, deep_p)
1732 wv->name = (char *) XSTRING (string)->data; 1732 wv->name = (char *) XSTRING (string)->data;
1733 wv->value = 0; 1733 wv->value = 0;
1734 wv->enabled = 1; 1734 wv->enabled = 1;
1735 /* This prevents lwlib from assuming this
1736 menu item is really supposed to be empty. */
1737 /* The EMACS_INT cast avoids a warning.
1738 This value just has to be different from small integers. */
1739 wv->call_data = (void *) (EMACS_INT) (-1);
1735 1740
1736 if (prev_wv) 1741 if (prev_wv)
1737 prev_wv->next = wv; 1742 prev_wv->next = wv;