From: Robin Templeton Date: Fri, 18 Jul 2014 19:08:12 +0000 (-0400) Subject: read_menu_command fix X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/6e1f17865f8c7ed262173282c5e2087388bf7d1c read_menu_command fix --- diff --git a/src/keyboard.c b/src/keyboard.c index 7fcc681867..7e63357039 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1713,7 +1713,7 @@ Lisp_Object read_menu_command (void) { Lisp_Object keybuf[30]; - scm_dynwind_begin (0); + dynwind_begin (); int i; /* We don't want to echo the keystrokes while navigating the @@ -1723,7 +1723,7 @@ read_menu_command (void) i = read_key_sequence (keybuf, ARRAYELTS (keybuf), Qnil, 0, 1, 1, 1); - scm_dynwind_end (); + dynwind_end (); if (! FRAME_LIVE_P (XFRAME (selected_frame))) Fkill_emacs (Qnil);