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)
{
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;
......
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