diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-11-12 21:12:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-11-12 21:12:35 +0000 |
commit | d48e616effc0db000a3c3cf7f85fcdafe61534dd (patch) | |
tree | 9ba6b7c528c243be999bd750f02ff3b84f2d2604 /lib-src/make-docfile.c | |
parent | 93fda17869ffdc72136ef9ba947e892e239df702 (diff) | |
download | emacs-d48e616effc0db000a3c3cf7f85fcdafe61534dd.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.c | 5 |
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); } |