summaryrefslogtreecommitdiff
path: root/lib-src/make-docfile.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-12 21:12:35 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-12 21:12:35 +0000
commitf44568946be1b6bb972335434abe3823f9278e28 (patch)
treea150f78609b1e562b4bd869262c39f3f31aa5ddb /lib-src/make-docfile.c
parentea96bc8a521729a31663a91e897dc8c3bb8ef9ba (diff)
downloademacs-f44568946be1b6bb972335434abe3823f9278e28.tar.gz
(read_c_string): For "", concatenate the two strings.
Diffstat (limited to 'lib-src/make-docfile.c')
-rw-r--r--lib-src/make-docfile.c5
1 files changed, 1 insertions, 4 deletions
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);
}