From fe9110b2adb00759af8883c332be8fcd6581ed51 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 22 May 2001 22:37:05 +0000 Subject: [PATCH] removed a routine that has moved to macglue.c --- Mac/Python/macgetargv.c | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c index bc5bbd56fe7..ac4e2868f82 100644 --- a/Mac/Python/macgetargv.c +++ b/Mac/Python/macgetargv.c @@ -87,27 +87,6 @@ PyMac_init_process_location() return 0; } -/* Given an FSSpec, return the FSSpec of the parent folder */ - -static OSErr -get_folder_parent (FSSpec * fss, FSSpec * parent) -{ - CInfoPBRec rec; - short err; - - * parent = * fss; - rec.hFileInfo.ioNamePtr = parent->name; - rec.hFileInfo.ioVRefNum = parent->vRefNum; - rec.hFileInfo.ioDirID = parent->parID; - rec.hFileInfo.ioFDirIndex = -1; - rec.hFileInfo.ioFVersNum = 0; - if (err = PBGetCatInfoSync (& rec)) - return err; - parent->parID = rec.dirInfo.ioDrParID; -/* parent->name[0] = 0; */ - return 0; -} - /* Check that there aren't any args remaining in the event */ static OSErr