]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Make tabs always 8 spaces wide -- it's more portable.
authorGuido van Rossum <guido@python.org>
Wed, 26 Feb 1992 15:24:44 +0000 (15:24 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 26 Feb 1992 15:24:44 +0000 (15:24 +0000)
Parser/tokenizer.c

index 3bd9530ae93bea3c08abdc95c263a754031f2598..1070d1359d5c8b781fec4b638719cfc20c793521 100644 (file)
@@ -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));