diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-07 17:09:31 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-07 17:09:31 (GMT) |
commit | 7d5f9e847a75c65f97068b3fd7980e62717c16fc (patch) | |
tree | 92ba6ec03558f4759c402221e7d7bae2ca7ee5eb /Mac/Python/macglue.c | |
parent | 6d653ab1b6463957f0c4d9059e778132c65123fa (diff) | |
download | cpython-7d5f9e847a75c65f97068b3fd7980e62717c16fc.zip cpython-7d5f9e847a75c65f97068b3fd7980e62717c16fc.tar.gz cpython-7d5f9e847a75c65f97068b3fd7980e62717c16fc.tar.bz2 |
- Put all options in a struct
- Unified initialization code for interpreter and applet
- Implemented new options to skip AE-processing for argc/argv and for
disabling interactive option setting
Diffstat (limited to 'Mac/Python/macglue.c')
-rw-r--r-- | Mac/Python/macglue.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 17bbff0..3df1a8a 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -178,9 +178,11 @@ PyMac_FixGUSIcd() return; } -#ifdef __CFM68K__ +/* +** SpinCursor (needed by GUSI) drags in heaps of stuff, so we +** provide a dummy here. +*/ void SpinCursor(short x) { /* Dummy */ } -#endif /* __CFM68K */ /* ** Replacement GUSI Spin function |