diff options
Diffstat (limited to 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/awk.c b/editors/awk.c index 685e8bed8..84ba125cd 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -728,7 +728,11 @@ static char *skip_spaces(char *p) | |||
728 | if (*p == '\\' && p[1] == '\n') { | 728 | if (*p == '\\' && p[1] == '\n') { |
729 | p++; | 729 | p++; |
730 | t_lineno++; | 730 | t_lineno++; |
731 | #if !ENABLE_PLATFORM_MINGW32 | ||
731 | } else if (*p != ' ' && *p != '\t') { | 732 | } else if (*p != ' ' && *p != '\t') { |
733 | #else | ||
734 | } else if (*p != ' ' && *p != '\t' && *p != '\r') { | ||
735 | #endif | ||
732 | break; | 736 | break; |
733 | } | 737 | } |
734 | p++; | 738 | p++; |