changeset 18114:0a684c540f66

(Fx_create_frame): Use XINT to access parent.
author Richard M. Stallman <rms@gnu.org>
date Mon, 02 Jun 1997 02:25:15 +0000
parents 9f7fdb0f76f3
children 06ce39d8e93e
files src/xfns.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfns.c	Mon Jun 02 02:21:48 1997 +0000
+++ b/src/xfns.c	Mon Jun 02 02:25:15 1997 +0000
@@ -3232,7 +3232,7 @@
 
   if (!NILP (parent))
     {
-      f->output_data.x->parent_desc = parent;
+      f->output_data.x->parent_desc = (Window) XINT (parent);
       f->output_data.x->explicit_parent = 1;
     }
   else