fixup! vim-patch:8.1.2379: using old C style comments

This commit is contained in:
Dundar Göc 2021-10-17 12:04:06 +02:00
parent 4476d4ef17
commit b98383a250

View File

@ -5215,7 +5215,7 @@ int find_help_tags(const char_u *arg, int *num_matches, char_u ***matches, bool
&& *num_matches > 0) { && *num_matches > 0) {
// Sort the matches found on the heuristic number that is after the // Sort the matches found on the heuristic number that is after the
// tag name. // tag name.
qsort((void *)(*matches), (size_t)*num_matches, qsort((void *)(*matches), (size_t)(*num_matches),
sizeof(char_u *), help_compare); sizeof(char_u *), help_compare);
// Delete more than TAG_MANY to reduce the size of the listing. // Delete more than TAG_MANY to reduce the size of the listing.
while (*num_matches > TAG_MANY) { while (*num_matches > TAG_MANY) {