summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/filter.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/filter.c b/src/filter.c
index 28a05235b..f2ab1b85a 100644
--- a/src/filter.c
+++ b/src/filter.c
@@ -33,10 +33,6 @@ void git_text_gather_stats(git_text_stats *stats, const git_buf *text)
else if (c == '\n')
stats->lf++;
- else if (c == 0x85)
- /* Unicode CR+LF */
- stats->crlf++;
-
else if (c == 127)
/* DEL */
stats->nonprintable++;