aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-02 02:25:15 +0000
committerRichard M. Stallman1997-06-02 02:25:15 +0000
commite8d0501f723d903ed76506fb8f243aee4cfed973 (patch)
tree1ad11a48d47d366e5000c076a2e3d427ffc02dbc /src
parente704cb4bc665c7db0bd662f69980f83f11047713 (diff)
downloademacs-e8d0501f723d903ed76506fb8f243aee4cfed973.tar.gz
emacs-e8d0501f723d903ed76506fb8f243aee4cfed973.zip
(Fx_create_frame): Use XINT to access parent.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 6b97a7d1615..fa837e6a4c0 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3232,7 +3232,7 @@ This function is an internal primitive--use `make-frame' instead.")
3232 3232
3233 if (!NILP (parent)) 3233 if (!NILP (parent))
3234 { 3234 {
3235 f->output_data.x->parent_desc = parent; 3235 f->output_data.x->parent_desc = (Window) XINT (parent);
3236 f->output_data.x->explicit_parent = 1; 3236 f->output_data.x->explicit_parent = 1;
3237 } 3237 }
3238 else 3238 else