mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 13:05:03 +00:00
Simplify found_question_marks tests
This commit is contained in:
parent
84968c6bb2
commit
f7388c6655
1 changed files with 3 additions and 14 deletions
|
@ -326,20 +326,9 @@ static void CanonicalizeCursorWordAndSearchOptions(
|
|||
break;
|
||||
}
|
||||
|
||||
if (found_question_marks == 3) {
|
||||
options->flag_description_substring_search = true;
|
||||
options->flag_location_substring_search = true;
|
||||
options->flag_name_substring_search = true;
|
||||
}
|
||||
|
||||
if (found_question_marks == 2) {
|
||||
options->flag_location_substring_search = true;
|
||||
options->flag_name_substring_search = true;
|
||||
}
|
||||
|
||||
if (found_question_marks == 1) {
|
||||
options->flag_name_substring_search = true;
|
||||
}
|
||||
if (found_question_marks > 2) options->flag_description_substring_search = true;
|
||||
if (found_question_marks > 1) options->flag_location_substring_search = true;
|
||||
if (found_question_marks > 0) options->flag_name_substring_search = true;
|
||||
|
||||
options->return_all_matching_flags = (found_plusses > 0);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue