]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a typo in xmenu.c
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Jun 2018 07:17:05 +0000 (10:17 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Jun 2018 07:17:05 +0000 (10:17 +0300)
* src/xmenu.c (x_menu_show): Replace a call to
record_unwind_protect_pointer with record_unwind_protect_ptr.
(Bug#31856)

src/xmenu.c

index 2fbf9e8bf6841125acfd671af94d04e00eabfbf5..22995d8c7e80b8428c0fb3ccd31aa6f30a4f737c 100644 (file)
@@ -2290,8 +2290,8 @@ x_menu_show (struct frame *f, int x, int y, int menuflags,
   XMenuActivateSetWaitFunction (x_menu_wait_for_event, FRAME_X_DISPLAY (f));
 #endif
 
-  record_unwind_protect_pointer (pop_down_menu,
-                                &(struct pop_down_menu) {f, menu});
+  record_unwind_protect_ptr (pop_down_menu,
+                            &(struct pop_down_menu) {f, menu});
 
   /* Help display under X won't work because XMenuActivate contains
      a loop that doesn't give Emacs a chance to process it.  */