From d48e616effc0db000a3c3cf7f85fcdafe61534dd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 12 Nov 1993 21:12:35 +0000 Subject: [PATCH] (read_c_string): For "", concatenate the two strings. --- lib-src/make-docfile.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 2fb9af0849..1308f6c8ed 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c @@ -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); } -- 2.39.2