From: Guido van Rossum Date: Wed, 26 Feb 1992 15:24:44 +0000 (+0000) Subject: Make tabs always 8 spaces wide -- it's more portable. X-Git-Tag: v0.9.8~505 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fe872988b3dd9edf004160c44076df839f14516;p=thirdparty%2FPython%2Fcpython.git Make tabs always 8 spaces wide -- it's more portable. --- diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 3bd9530ae93b..1070d1359d5c 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -37,13 +37,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "tokenizer.h" #include "errcode.h" -#ifdef macintosh -#define TABSIZE 4 -#endif - -#ifndef TABSIZE +/* Don't ever change this -- it would break the portability of Python code */ #define TABSIZE 8 -#endif /* Forward */ static struct tok_state *tok_new PROTO((void));