diff options
Diffstat (limited to 'Mac/Python/macgetargv.c')
-rw-r--r-- | Mac/Python/macgetargv.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c index 90cdb5a..96a02fd 100644 --- a/Mac/Python/macgetargv.c +++ b/Mac/Python/macgetargv.c @@ -295,31 +295,12 @@ event_loop() } } -/* Initialize the Mac toolbox world */ - -static void -init_mac_world() -{ -#ifdef THINK_C - printf("\n"); -#else - MaxApplZone(); - InitGraf(&qd.thePort); - InitFonts(); - InitWindows(); - TEInit(); - InitDialogs((long)0); - InitMenus(); - InitCursor(); -#endif -} /* Get the argv vector, return argc */ int PyMac_GetArgv(pargv) char ***pargv; { - init_mac_world(); arg_count = 0; arg_vector[arg_count++] = strdup(get_application_name()); |