Commit cd56d9fe by Richard Kenner

(rescan): Insert a space after `.' as well, to prevent accidental token-pasting (e.g.

(rescan): Insert a space after `.' as well, to prevent accidental
token-pasting (e.g. `.x' -> `.10').

From-SVN: r13578
parent b11d1790
...@@ -3414,9 +3414,9 @@ randomchar: ...@@ -3414,9 +3414,9 @@ randomchar:
if (!traditional && obp != op->buf) { if (!traditional && obp != op->buf) {
switch (obp[-1]) { switch (obp[-1]) {
case '!': case '%': case '&': case '*': case '!': case '%': case '&': case '*':
case '+': case '-': case '/': case ':': case '+': case '-': case '.': case '/':
case '<': case '=': case '>': case '^': case ':': case '<': case '=': case '>':
case '|': case '^': case '|':
/* If we are expanding a macro arg, make a newline marker /* If we are expanding a macro arg, make a newline marker
to separate the tokens. If we are making real output, to separate the tokens. If we are making real output,
a plain space will do. */ a plain space will do. */
......
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