Commit d5896f20 by Richard Stallman

(assemble_string): Put braces around ASM_OUTPUT_ASCII.

From-SVN: r5479
parent a773f6c7
......@@ -805,7 +805,9 @@ assemble_string (p, size)
if (output_bytecode)
BC_OUTPUT_ASCII (asm_out_file, p, thissize);
else
ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
{
ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
}
pos += thissize;
p += thissize;
......
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