From bddd097cb1256e9851e694a5cc07f6e653113980 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 4 Nov 1994 04:00:50 +0000 Subject: [PATCH] (XTread_socket): Generate iconify and deiconify events. --- src/xterm.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/xterm.c b/src/xterm.c index 4ee9fdd3e3..f5d0226745 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3457,6 +3457,12 @@ XTread_socket (sd, bufp, numchars, waitp, expected) We depend on x_make_frame_invisible to mark it iconified. */ if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)) f->async_iconified = 1; + + bufp->kind = iconify_event; + XSETFRAME (bufp->frame_or_window, f); + bufp++; + count++; + numchars--; } #ifdef USE_X_TOOLKIT goto OTHER; @@ -3475,6 +3481,12 @@ XTread_socket (sd, bufp, numchars, waitp, expected) /* wait_reading_process_input will notice this and update the frame's display structures. */ SET_FRAME_GARBAGED (f); + + bufp->kind = deiconify_event; + XSETFRAME (bufp->frame_or_window, f); + bufp++; + count++; + numchars--; } #ifdef USE_X_TOOLKIT goto OTHER; -- 2.39.2