Commit da0bfb6728df127e18fa2933b839b5920a84397a

Russell Belfer 2012-11-01T10:14:04

Merge pull request #1036 from jamill/text_stat Update of text stats calculation

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/filter.c b/src/filter.c
index 28a0523..f2ab1b8 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++;