From 15f0cf78163b3e59f4e325c7555ea988f668f06a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 12 Feb 1996 20:56:46 +0000 Subject: [PATCH] (redisplay) [USE_X_TOOLKIT]: Do nothing if popup_activated. --- src/xdisp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/xdisp.c b/src/xdisp.c index f96a1862f93..3430c98d211 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -818,6 +818,11 @@ redisplay () if (noninteractive) return; +#ifdef USE_X_TOOLKIT + if (popup_activated ()) + return; +#endif + #ifdef MULTI_FRAME if (FRAME_TERMCAP_P (selected_frame) && previous_terminal_frame != selected_frame) -- 2.39.2