1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-01 11:20:41 -08:00

(Fy_or_n_p, Fyes_or_no_p) [HAVE_X_MENU]: Redisplay before popping up a menu.

This commit is contained in:
Karl Heuer 1994-06-07 02:32:54 +00:00
parent 267ad509d7
commit a3b14a4525

View file

@ -1136,6 +1136,7 @@ Also accepts Space to mean yes, or Delete to mean no.")
&& using_x_p ())
{
Lisp_Object pane, menu;
redisplay_preserve_echo_area ();
pane = Fcons (Fcons (build_string ("Yes"), Qt),
Fcons (Fcons (build_string ("No"), Qnil),
Qnil));
@ -1238,6 +1239,7 @@ and can edit it until it as been confirmed.")
&& using_x_p ())
{
Lisp_Object pane, menu, obj;
redisplay_preserve_echo_area ();
pane = Fcons (Fcons (build_string ("Yes"), Qt),
Fcons (Fcons (build_string ("No"), Qnil),
Qnil));