Merge pull request #1036 from jamill/text_stat

Update of text stats calculation
This commit is contained in:
Russell Belfer 2012-11-01 10:14:04 -07:00
commit da0bfb6728

View File

@ -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++;