From: Noam Postavsky Date: Thu, 29 Mar 2018 23:17:34 +0000 (-0400) Subject: * src/xterm.c (x_make_frame_visible): Fix typo in previous change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~19^2~5755 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=00c1f771f2a51ffa675ec5a07ea330f2605cd302;p=emacs.git * src/xterm.c (x_make_frame_visible): Fix typo in previous change. --- diff --git a/src/xterm.c b/src/xterm.c index f8ac23e53b9..6ab4a03002d 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -11551,7 +11551,7 @@ x_make_frame_visible (struct frame *f) poll_for_input_1 (); poll_suppress_count = old_poll_suppress_count; #endif - if (FRAME_VISIBLE_P (f)) + if (! FRAME_VISIBLE_P (f)) x_wait_for_event (f, MapNotify); } }