From 80f5b9d8135c93cbec206a232bf78328752029da Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 3 Jun 1992 19:01:26 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1146 --- gcc/c-lex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 95efad586bb..13441894a97 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -922,9 +922,6 @@ yylex () while (1) switch (c) { - case '\r': - if (!flag_traditional) /* ANSI says no */ - goto found_nonwhite; case ' ': case '\t': case '\f': @@ -933,6 +930,9 @@ yylex () c = getc (finput); break; + case '\r': + /* Call skip_white_space so we can warn if appropriate. */ + case '\n': case '/': case '\\': -- 2.30.2