Commit 80f5b9d8 by Richard Stallman

*** empty log message ***

From-SVN: r1146
parent c803cac3
...@@ -922,9 +922,6 @@ yylex () ...@@ -922,9 +922,6 @@ yylex ()
while (1) while (1)
switch (c) switch (c)
{ {
case '\r':
if (!flag_traditional) /* ANSI says no */
goto found_nonwhite;
case ' ': case ' ':
case '\t': case '\t':
case '\f': case '\f':
...@@ -933,6 +930,9 @@ yylex () ...@@ -933,6 +930,9 @@ yylex ()
c = getc (finput); c = getc (finput);
break; break;
case '\r':
/* Call skip_white_space so we can warn if appropriate. */
case '\n': case '\n':
case '/': case '/':
case '\\': case '\\':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment