aboutsummaryrefslogtreecommitdiff
path: root/dlib
diff options
context:
space:
mode:
Diffstat (limited to 'dlib')
-rw-r--r--dlib/dlib.c5
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;