diff options
| author | Russell Belfer <rb@github.com> | 2012-11-01 10:14:04 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2012-11-01 10:14:04 -0700 |
| commit | da0bfb6728df127e18fa2933b839b5920a84397a (patch) | |
| tree | ec0df82a90552de0cbe60661b5115a2c7a53a4f5 /src | |
| parent | 7ae73e94dbbb4249f26dd5d0a21d25e1dc4667ca (diff) | |
| parent | c902f5a0fffaf1d3e917d8b824e9a4fd6ad2d4ac (diff) | |
| download | libgit2-da0bfb6728df127e18fa2933b839b5920a84397a.tar.gz | |
Merge pull request #1036 from jamill/text_stat
Update of text stats calculation
Diffstat (limited to 'src')
| -rw-r--r-- | src/filter.c | 4 |
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++; |
