summaryrefslogtreecommitdiffstats
path: root/Parser/tokenizer.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-02-26 15:24:44 (GMT)
committerGuido van Rossum <guido@python.org>1992-02-26 15:24:44 (GMT)
commit4fe872988b3dd9edf004160c44076df839f14516 (patch)
treee811b6b19b894fb923c00eb413292bcbdbefbd55 /Parser/tokenizer.c
parent06a6702dc870dbe997149c96cf6cc411793673b3 (diff)
downloadcpython-4fe872988b3dd9edf004160c44076df839f14516.zip
cpython-4fe872988b3dd9edf004160c44076df839f14516.tar.gz
cpython-4fe872988b3dd9edf004160c44076df839f14516.tar.bz2
Make tabs always 8 spaces wide -- it's more portable.
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r--Parser/tokenizer.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 3bd9530..1070d13 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));