From: Andrew M. Kuchling Date: Tue, 5 Aug 2008 02:05:23 +0000 (+0000) Subject: #3367: revert rev. 65539: this change causes test_parser to fail X-Git-Tag: v2.6b3~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=110a48cf6002db9ac1f38372520c84d7e98cb396;p=thirdparty%2FPython%2Fcpython.git #3367: revert rev. 65539: this change causes test_parser to fail --- diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 73ff92a19939..1d0a4aa3f23b 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -1117,7 +1117,7 @@ tok_get(register struct tok_state *tok, char **p_start, char **p_end) register int c; int blankline; - tok->line_start = *p_start = *p_end = NULL; + *p_start = *p_end = NULL; nextline: tok->start = NULL; blankline = 0;