(rescan): ".." no longer terminates a preprocessing number, since
that's incompatible with the C standard. From-SVN: r8339
This commit is contained in:
parent
39efff5b75
commit
fd12bc82da
@ -2934,9 +2934,7 @@ do { ip = &instack[indepth]; \
|
||||
ibp += 2;
|
||||
}
|
||||
c = *ibp++;
|
||||
/* ".." terminates a preprocessing number. This is useless for C
|
||||
code but useful for preprocessing other things. */
|
||||
if (!isalnum (c) && (c != '.' || *ibp == '.') && c != '_') {
|
||||
if (!is_idchar[c] && c != '.') {
|
||||
--ibp;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user