Commit 05d428f4 by Richard Kenner

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

simple or empty expansion.

From-SVN: r8513
parent ceb5bbab
...@@ -5429,9 +5429,9 @@ create_definition (buf, limit, op) ...@@ -5429,9 +5429,9 @@ create_definition (buf, limit, op)
{ {
switch (*bp) switch (*bp)
{ {
case '\t': case ' ': case '\t': case ' ': case '\r':
/* Skip spaces and tabs. */ /* Skip spaces and tabs. */
while (++bp < limit && (*bp == ' ' || *bp == '\t')) while (++bp < limit && (*bp == ' ' || *bp == '\t' || *bp == '\r'))
continue; continue;
break; break;
......
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