]> code.delx.au - gnu-emacs/commitdiff
(read_c_string): For "", concatenate the two strings.
authorRichard M. Stallman <rms@gnu.org>
Fri, 12 Nov 1993 21:12:35 +0000 (21:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 12 Nov 1993 21:12:35 +0000 (21:12 +0000)
lib-src/make-docfile.c

index 2fb9af0849fbf34212f05af041da2b8d4543ccf4..1308f6c8ed894ca003f89aacb40bd817ddc73066 100644 (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);
     }