changeset 7902:22b9aaaf0302

Put stdio.h after config.h. (XTread_socket): Use x_top_window_to_frame in prev change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 15 Jun 1994 04:01:33 +0000
parents 28f9608f3c58
children 40bb379c9550
files src/xterm.c
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/xterm.c	Wed Jun 15 03:55:42 1994 +0000
+++ b/src/xterm.c	Wed Jun 15 04:01:33 1994 +0000
@@ -22,11 +22,12 @@
 /* On 4.3 these lose if they come after xterm.h.  */
 /* On HP-UX 8.0 signal.h loses if it comes after config.h.  */
 /* Putting these at the beginning seems to be standard for other .c files.  */
-#include <stdio.h>
 #include <signal.h>
 
 #include <config.h>
 
+#include <stdio.h>
+
 /* Need syssignal.h for various externs and definitions that may be required
    by some configurations for calls to signal later in this source file.  */
 #include "syssignal.h"
@@ -3446,8 +3447,8 @@
 		      {
 			/* This is just so we only give real data once
 			   for a single Emacs process.  */
-			if (event.xclient.window
-			    == FRAME_X_WINDOW (selected_frame))
+			if (x_top_window_to_frame (event.xclient.window)
+			    == selected_frame)
 			  XSetCommand (x_current_display,
 				       event.xclient.window,
 				       initial_argv, initial_argc);