From 837fb7e8f21c1b584089c95ddb604a861a0d4a75 Mon Sep 17 00:00:00 2001 From: corvid Date: Sun, 10 Jul 2011 02:45:00 +0000 Subject: rm backslash line continuation from dGetline() http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-June/008461.html and no one objected, so... --- dlib/dlib.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'dlib') 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; -- cgit v1.2.3