diff options
author | corvid <corvid@lavabit.com> | 2011-07-10 02:45:00 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-07-10 02:45:00 +0000 |
commit | 837fb7e8f21c1b584089c95ddb604a861a0d4a75 (patch) | |
tree | 39e52bfd63013f7705aa7266475af8f3e7bcf001 /dlib | |
parent | 8e73b3c1151fc5a9b9e52444c89e0298e3432c59 (diff) |
rm backslash line continuation from dGetline()
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-June/008461.html
and no one objected, so...
Diffstat (limited to 'dlib')
-rw-r--r-- | dlib/dlib.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dlib/dlib.c b/dlib/dlib.c index b87d0ce1..f2ef2dd1 100644 --- a/dlib/dlib.c +++ b/dlib/dlib.c @@ -877,11 +877,6 @@ char *dGetline (FILE *stream) dstr = dStr_sized_new(64); while ((ch = fgetc(stream)) != EOF) { - if (ch == '\\') { - /* continue with the next line */ - while ((ch = fgetc(stream)) != EOF && ch != '\n') ; - continue; - } dStr_append_c(dstr, ch); if (ch == '\n') break; |