(create_definition): Allow carriage-return ('\r') as white space in
simple or empty expansion. From-SVN: r8513
This commit is contained in:
parent
ceb5bbab3e
commit
05d428f4dd
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user