diff options
| author | Noam Postavsky | 2018-03-29 19:17:34 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2018-03-29 19:17:34 -0400 |
| commit | 00c1f771f2a51ffa675ec5a07ea330f2605cd302 (patch) | |
| tree | c88fca1b65eceace7b36316e1d9d2a4b9c6468cc /src | |
| parent | 2a192e21cf3b04b7f830b4971c1508c611e13a3c (diff) | |
| download | emacs-00c1f771f2a51ffa675ec5a07ea330f2605cd302.tar.gz emacs-00c1f771f2a51ffa675ec5a07ea330f2605cd302.zip | |
* src/xterm.c (x_make_frame_visible): Fix typo in previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 11551 | poll_for_input_1 (); | 11551 | poll_for_input_1 (); |
| 11552 | poll_suppress_count = old_poll_suppress_count; | 11552 | poll_suppress_count = old_poll_suppress_count; |
| 11553 | #endif | 11553 | #endif |
| 11554 | if (FRAME_VISIBLE_P (f)) | 11554 | if (! FRAME_VISIBLE_P (f)) |
| 11555 | x_wait_for_event (f, MapNotify); | 11555 | x_wait_for_event (f, MapNotify); |
| 11556 | } | 11556 | } |
| 11557 | } | 11557 | } |