aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu.c
diff options
context:
space:
mode:
authorEli Zaretskii2014-01-17 13:55:00 +0200
committerEli Zaretskii2014-01-17 13:55:00 +0200
commit20adfbd8eaf2427526b582b60db74e0b408e0874 (patch)
treed0e9fef05fdaa746986af12a9775755797c47aaa /src/menu.c
parent160630163c0c14591ad77164ac640581bfb7b503 (diff)
downloademacs-20adfbd8eaf2427526b582b60db74e0b408e0874.tar.gz
emacs-20adfbd8eaf2427526b582b60db74e0b408e0874.zip
Provisional fix for bug #16479 with client connecting while in a TTY menu.
src/menu.c (Fx_popup_menu): When invoking tty_menu_show, temporarily switch to single keyboard. Prevents daemon crashes when a new client connects while we show a TTY menu in an existing client.
Diffstat (limited to 'src/menu.c')
-rw-r--r--src/menu.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/menu.c b/src/menu.c
index dc3198faf0e..c38152f47e8 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -1443,8 +1443,16 @@ no quit occurs and `x-popup-menu' returns nil. */)
1443 else 1443 else
1444#endif 1444#endif
1445 if (FRAME_TERMCAP_P (f)) 1445 if (FRAME_TERMCAP_P (f))
1446 selection = tty_menu_show (f, xpos, ypos, for_click, keymaps, title, 1446 {
1447 kbd_menu_navigation, &error_name); 1447 ptrdiff_t count1 = SPECPDL_INDEX ();
1448
1449 /* Avoid crashes if, e.g., another client will connect while we
1450 are in a menu. */
1451 temporarily_switch_to_single_kboard (f);
1452 selection = tty_menu_show (f, xpos, ypos, for_click, keymaps, title,
1453 kbd_menu_navigation, &error_name);
1454 unbind_to (count1, Qnil);
1455 }
1448 1456
1449#ifdef HAVE_NS 1457#ifdef HAVE_NS
1450 unbind_to (specpdl_count, Qnil); 1458 unbind_to (specpdl_count, Qnil);