From: Andrew Innes Date: Mon, 13 Oct 1997 18:06:22 +0000 (+0000) Subject: Pass menu handle by value. X-Git-Tag: emacs-20.3~3033 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4a80f0815d27df3374b81d0df17e584374feab0c;p=emacs.git Pass menu handle by value. --- diff --git a/src/w32menu.c b/src/w32menu.c index 0495818d7ff..73f1dcb920b 100644 --- a/src/w32menu.c +++ b/src/w32menu.c @@ -1316,7 +1316,7 @@ cached information about equivalent key sequences.") /* Display them in a menu. */ BLOCK_INPUT; - selection = w32menu_show (f, xpos, ypos, menu, &hmenu, &error_name); + selection = w32menu_show (f, xpos, ypos, menu, hmenu, &error_name); UNBLOCK_INPUT;