From: Richard M. Stallman Date: Wed, 24 Nov 1993 06:39:54 +0000 (+0000) Subject: (XTread_socket): Really handle Xatom_wm_window_moved events. X-Git-Tag: emacs-19.34~10695 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1fb20991bfc22d30d96576473dc2178649e8a5c2;p=emacs.git (XTread_socket): Really handle Xatom_wm_window_moved events. (XTread_socket): Generate delete_window_event's. --- diff --git a/src/xterm.c b/src/xterm.c index 1b398a0b032..5d8470296b3 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -2692,9 +2692,17 @@ XTread_socket (sd, bufp, numchars, waitp, expected) struct frame *f = x_window_to_frame (event.xclient.window); if (f) - if (numchars > 0) - { - } + { + if (numchars == 0) + abort (); + + bufp->kind = delete_window_event; + XSET (bufp->frame_or_window, Lisp_Frame, f); + bufp++; + + count += 1; + numchars -= 1; + } } } else if (event.xclient.message_type == Xatom_wm_configure_denied) @@ -2703,9 +2711,16 @@ XTread_socket (sd, bufp, numchars, waitp, expected) else if (event.xclient.message_type == Xatom_wm_window_moved) { int new_x, new_y; - + struct frame *f = x_window_to_frame (event.xclient.window); + new_x = event.xclient.data.s[0]; new_y = event.xclient.data.s[1]; + + if (f) + { + f->display.x->left_pos = new_x; + f->display.x->top_pos = new_y; + } } } break; @@ -4326,7 +4341,9 @@ x_set_mouse_position (f, x, y) x_focus_on_frame (f) struct frame *f; { +#if 0 /* This proves to be unpleasant. */ x_raise_frame (f); +#endif #if 0 /* I don't think that the ICCCM allows programs to do things like this without the interaction of the window manager. Whatever you end up