]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added guesstabsize() for the mac
authorGuido van Rossum <guido@python.org>
Fri, 27 Mar 1992 17:31:35 +0000 (17:31 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 27 Mar 1992 17:31:35 +0000 (17:31 +0000)
Parser/pgenmain.c

index da6aa2ee3acbaa191837bb0e3987b6db38efb135..6737326f26edf3d7c0f2b73cacf6b560b7c519a2 100644 (file)
@@ -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)
 */