(assemble_string): Put braces around ASM_OUTPUT_ASCII.

From-SVN: r5479
This commit is contained in:
Richard Stallman 1993-09-27 00:51:55 +00:00
parent a773f6c7e6
commit d5896f2021

View File

@ -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;