aboutsummaryrefslogtreecommitdiffstats
path: root/src/macfns.c
diff options
context:
space:
mode:
authorSteven Tamm2004-05-14 03:07:12 +0000
committerSteven Tamm2004-05-14 03:07:12 +0000
commita433994a5a3d2bab4c4d659f73b23524201b6819 (patch)
tree0866f6d4b49f14d7f289bc61a1880d4be463e9aa /src/macfns.c
parent97dad9d378e973c5bc9d3c13cb1fb399764db6dc (diff)
downloademacs-a433994a5a3d2bab4c4d659f73b23524201b6819.tar.gz
emacs-a433994a5a3d2bab4c4d659f73b23524201b6819.zip
Various fixes to support USE_LSB_TAG with carbon emacs. Mostly fixing
prototypes and confusions between pointers and lisp objects
Diffstat (limited to 'src/macfns.c')
-rw-r--r--src/macfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macfns.c b/src/macfns.c
index 02d0cb88d1f..625ca29336c 100644
--- a/src/macfns.c
+++ b/src/macfns.c
@@ -2598,7 +2598,7 @@ This function is an internal primitive--use `make-frame' instead. */)
2598 2598
2599 if (!NILP (parent)) 2599 if (!NILP (parent))
2600 { 2600 {
2601 f->output_data.mac->parent_desc = (Window) parent; 2601 f->output_data.mac->parent_desc = (Window) XFASTINT (parent);
2602 f->output_data.mac->explicit_parent = 1; 2602 f->output_data.mac->explicit_parent = 1;
2603 } 2603 }
2604 else 2604 else