Commit 3a59c77c by Richard Henderson Committed by Richard Henderson

* cppmain.c (scan_buffer): Don't avoid paste for assembly.

From-SVN: r37184
parent 6ef3973d
2000-11-01 Richard Henderson <rth@redhat.com>
* cppmain.c (scan_buffer): Don't avoid paste for assembly.
2000-11-01 Neil Booth <neilb@earthling.net> 2000-11-01 Neil Booth <neilb@earthling.net>
* c-parse.in (_yylex): Remove CPP_BACKSLASH case. * c-parse.in (_yylex): Remove CPP_BACKSLASH case.
......
...@@ -196,7 +196,9 @@ scan_buffer (pfile) ...@@ -196,7 +196,9 @@ scan_buffer (pfile)
putc (' ', print.outf); putc (' ', print.outf);
} }
} }
else if (print.printed && ! (token->flags & PREV_WHITE) else if (print.printed
&& ! (token->flags & PREV_WHITE)
&& ! CPP_OPTION (pfile, lang_asm)
&& cpp_avoid_paste (pfile, &tokens[1 - index], token)) && cpp_avoid_paste (pfile, &tokens[1 - index], token))
token->flags |= PREV_WHITE; token->flags |= PREV_WHITE;
......
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