From 05d428f4dd1ac04143e0e607dc75858922852b9d Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 18 Nov 1994 18:53:39 -0500 Subject: [PATCH] (create_definition): Allow carriage-return ('\r') as white space in simple or empty expansion. From-SVN: r8513 --- gcc/cccp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/cccp.c b/gcc/cccp.c index b33ae3af0c5..58a82363c2b 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -5429,9 +5429,9 @@ create_definition (buf, limit, op) { switch (*bp) { - case '\t': case ' ': + case '\t': case ' ': case '\r': /* Skip spaces and tabs. */ - while (++bp < limit && (*bp == ' ' || *bp == '\t')) + while (++bp < limit && (*bp == ' ' || *bp == '\t' || *bp == '\r')) continue; break; -- 2.30.2