From: Guido van Rossum Date: Fri, 27 Mar 1992 17:31:35 +0000 (+0000) Subject: Added guesstabsize() for the mac X-Git-Tag: v0.9.8~432 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ebb23c6375a028eb8a5f0a20a2e04652b977803;p=thirdparty%2FPython%2Fcpython.git Added guesstabsize() for the mac --- diff --git a/Parser/pgenmain.c b/Parser/pgenmain.c index da6aa2ee3acb..6737326f26ed 100644 --- a/Parser/pgenmain.c +++ b/Parser/pgenmain.c @@ -143,6 +143,16 @@ fatal(msg) exit(1); } +#ifdef macintosh +/* ARGSUSED */ +int +guesstabsize(path) + char *path; +{ + return 4; +} +#endif + /* XXX TO DO: - check for duplicate definitions of names (instead of fatal err) */