(read_c_string): For "", concatenate the two strings.

This commit is contained in:
Richard M. Stallman 1993-11-12 21:12:35 +00:00
parent 93fda17869
commit d48e616eff

View file

@ -127,10 +127,7 @@ read_c_string (infile, printflag)
c = getc (infile);
if (c != '"')
break;
if (printflag > 0)
putc (c, outfile);
else if (printflag < 0)
*p++ = c;
/* If we had a "", concatenate the two strings. */
c = getc (infile);
}