Commit fd12bc82 by Richard Kenner

(rescan): ".." no longer terminates a preprocessing number, since

that's incompatible with the C standard.

From-SVN: r8339
parent 39efff5b
......@@ -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;
}
......
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