Comment grammar

This commit is contained in:
Andrew M. Kuchling 2006-10-06 18:51:55 +00:00
parent 615842fba6
commit 9b3a824097

View file

@ -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';