diff options
Diffstat (limited to 'lex.c')
-rw-r--r-- | lex.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -34,10 +34,6 @@ GetLine(DviWidget dw, char *Buffer, int Length) while ((!p || i < Length) && DviGetC (dw, &c) != EOF && c != '\n') if (p) *p++ = c; -#if 0 - if (c == '\n' && p) /* Retain the newline like fgets */ - *p++ = c; -#endif if (c == '\n') DviUngetC(dw, c); if (p) |