Mercurial > emacs
changeset 4987:f052db139432
(read_c_string): For "", concatenate the two strings.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 12 Nov 1993 21:12:35 +0000 |
parents | 31b1545319dc |
children | 2f9a58694d43 |
files | lib-src/make-docfile.c |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/make-docfile.c Fri Nov 12 20:38:30 1993 +0000 +++ b/lib-src/make-docfile.c Fri Nov 12 21:12:35 1993 +0000 @@ -127,10 +127,7 @@ 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); }