Make tabs always 8 spaces wide -- it's more portable.

This commit is contained in:
Guido van Rossum 1992-02-26 15:24:44 +00:00
parent 06a6702dc8
commit 4fe872988b
1 changed files with 1 additions and 6 deletions

View 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));