(create_definition): Allow carriage-return ('\r') as white space in

simple or empty expansion.

From-SVN: r8513
This commit is contained in:
Richard Kenner 1994-11-18 18:53:39 -05:00
parent ceb5bbab3e
commit 05d428f4dd

View File

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