diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-08-02 18:32:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-08-02 18:32:39 +0000 |
commit | 91ea2a7a547218570395ab13d7c59217d5810cb9 (patch) | |
tree | b1e7b5ede854dcdabdae9ee78e44608e45e8ef69 | |
parent | f2cfa9a63eeeb5ad139debc60b4fbb2f2475c570 (diff) | |
download | emacs-91ea2a7a547218570395ab13d7c59217d5810cb9.tar.gz |
(XTread_socket): For UnmapNotify, use x_top_window_to_frame.
-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 43679760353..89b7bf90529 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3554,7 +3554,7 @@ XTread_socket (sd, bufp, numchars, waitp, expected) break; case UnmapNotify: - f = x_any_window_to_frame (dpyinfo, event.xunmap.window); + f = x_top_window_to_frame (dpyinfo, event.xunmap.window); if (f) /* F may no longer exist if the frame was deleted. */ { |