From: Richard M. Stallman Date: Mon, 12 Feb 1996 20:56:46 +0000 (+0000) Subject: (redisplay) [USE_X_TOOLKIT]: Do nothing if popup_activated. X-Git-Tag: emacs-19.34~1301 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=15f0cf78163b3e59f4e325c7555ea988f668f06a;p=emacs.git (redisplay) [USE_X_TOOLKIT]: Do nothing if popup_activated. --- 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)