From: Paul Eggert Date: Tue, 3 Jul 2018 18:54:35 +0000 (-0700) Subject: Fix typo in --with-x-toolkit=no code X-Git-Tag: emacs-27.0.90~4724 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d274c3e1c77c1f29c040901108fe5fb8a843044;p=emacs.git Fix typo in --with-x-toolkit=no code * src/xmenu.c (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Fix type typo introduced by 2018-06-14T22:59:08!eggert@cs.ucla.edu. --- diff --git a/src/xmenu.c b/src/xmenu.c index dc6f33112c5..58fba8c3225 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -2057,7 +2057,7 @@ struct pop_down_menu static void pop_down_menu (void *arg) { - union pop_down_menu *data = arg; + struct pop_down_menu *data = arg; struct frame *f = data->frame; XMenu *menu = data->menu;