diff options
| author | Richard M. Stallman | 1993-11-12 21:12:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-12 21:12:35 +0000 |
| commit | d48e616effc0db000a3c3cf7f85fcdafe61534dd (patch) | |
| tree | 9ba6b7c528c243be999bd750f02ff3b84f2d2604 /lib-src | |
| parent | 93fda17869ffdc72136ef9ba947e892e239df702 (diff) | |
| download | emacs-d48e616effc0db000a3c3cf7f85fcdafe61534dd.tar.gz emacs-d48e616effc0db000a3c3cf7f85fcdafe61534dd.zip | |
(read_c_string): For "", concatenate the two strings.
Diffstat (limited to 'lib-src')
| -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) | |||
| 127 | c = getc (infile); | 127 | c = getc (infile); |
| 128 | if (c != '"') | 128 | if (c != '"') |
| 129 | break; | 129 | break; |
| 130 | if (printflag > 0) | 130 | /* If we had a "", concatenate the two strings. */ |
| 131 | putc (c, outfile); | ||
| 132 | else if (printflag < 0) | ||
| 133 | *p++ = c; | ||
| 134 | c = getc (infile); | 131 | c = getc (infile); |
| 135 | } | 132 | } |
| 136 | 133 | ||