summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-02-12 20:56:46 +0000
committerRichard M. Stallman <rms@gnu.org>1996-02-12 20:56:46 +0000
commitd06f14b7df82fecebed1b58c5f995435d08aa998 (patch)
treea1d844807e89d6524ccc87a42982e2338654c618 /src
parent4ad0904babab42719e24481e457169477336f394 (diff)
downloademacs-d06f14b7df82fecebed1b58c5f995435d08aa998.tar.gz
(redisplay) [USE_X_TOOLKIT]: Do nothing if popup_activated.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c5
1 files changed, 5 insertions, 0 deletions
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)