From: Richard M. Stallman Date: Fri, 12 Nov 1993 21:12:35 +0000 (+0000) Subject: (read_c_string): For "", concatenate the two strings. X-Git-Tag: emacs-19.34~10864 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d48e616effc0db000a3c3cf7f85fcdafe61534dd;p=emacs.git (read_c_string): For "", concatenate the two strings. --- diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 2fb9af0849f..1308f6c8ed8 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); }