From: Andrew M. Kuchling Date: Fri, 6 Oct 2006 18:51:55 +0000 (+0000) Subject: Comment grammar X-Git-Tag: v2.6a1~2594 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b3a82409786af199c9491661e1d06b8dec7a04c;p=thirdparty%2FPython%2Fcpython.git Comment grammar --- diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index c58b6899b37e..86543567610d 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -897,7 +897,7 @@ tok_nextc(register struct tok_state *tok) tok->cur = tok->buf + cur; tok->line_start = tok->cur; /* replace "\r\n" with "\n" */ - /* For Mac leave the \r, giving syntax error */ + /* For Mac leave the \r, giving a syntax error */ pt = tok->inp - 2; if (pt >= tok->buf && *pt == '\r') { *pt++ = '\n';