aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-07-18 15:08:12 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:02 -0400
commit6e1f17865f8c7ed262173282c5e2087388bf7d1c (patch)
tree2ad931beae7e1598b963878f96cebc759bfe7d37 /src
parent3d60a9ba31f1e25fb4b1eada467c88c91f4b79e2 (diff)
read_menu_command fix
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
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);