diff options
| author | Junio C Hamano <gitster@pobox.com> | 2019-10-18 11:40:48 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-10-18 11:40:48 +0900 |
| commit | 43400b42220f5089af45f1a883353f2b40d1c960 (patch) | |
| tree | 120a995712bb771404b990e0d0eb336cd0f4350a | |
| parent | Merge branch 'dl/allow-running-cocci-verbosely' (diff) | |
| parent | utf8: use ARRAY_SIZE() in git_wcwidth() (diff) | |
| download | git-43400b42220f5089af45f1a883353f2b40d1c960.tar.gz git-43400b42220f5089af45f1a883353f2b40d1c960.zip | |
Merge branch 'bb/utf8-wcwidth-cleanup'
Code cleanup.
* bb/utf8-wcwidth-cleanup:
utf8: use ARRAY_SIZE() in git_wcwidth()
| -rw-r--r-- | utf8.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -95,13 +95,11 @@ static int git_wcwidth(ucs_char_t ch) return -1; /* binary search in table of non-spacing characters */ - if (bisearch(ch, zero_width, sizeof(zero_width) - / sizeof(struct interval) - 1)) + if (bisearch(ch, zero_width, ARRAY_SIZE(zero_width) - 1)) return 0; /* binary search in table of double width characters */ - if (bisearch(ch, double_width, sizeof(double_width) - / sizeof(struct interval) - 1)) + if (bisearch(ch, double_width, ARRAY_SIZE(double_width) - 1)) return 2; return 1; |
