From: Jack Jansen Date: Thu, 2 Feb 1995 14:27:31 +0000 (+0000) Subject: Added stuff so CodeWarrior isn't so verbose about its stdio windows X-Git-Tag: v1.2b3~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c76fd39587f428f970987773306759b46a9017cb;p=thirdparty%2FPython%2Fcpython.git Added stuff so CodeWarrior isn't so verbose about its stdio windows --- diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 4bf193e85e34..d13c883d95e1 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -41,6 +41,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include #endif +#ifdef __MWERKS__ +#include +#endif + char *fileargument; main(argc, argv) @@ -63,6 +67,11 @@ main(argc, argv) SIZE resource or whatever... Have fun, and let me know if you find a better way!) */ printf("\n"); +#endif +#ifdef __MWERKS__ + SIOUXSettings.asktosaveonclose = 0; + SIOUXSettings.showstatusline = 0; + SIOUXSettings.tabspaces = 4; #endif /* Use STDWIN's wargs() to set argc/argv to list of files to open */ wargs(&argc, &argv);