mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-27 16:51:15 -03:00
Fix call site for wildcard_match_internal
This commit is contained in:
@@ -353,7 +353,7 @@ bool wildcard_complete(const wcstring &str, const wchar_t *wc,
|
||||
|
||||
bool wildcard_match(const wcstring &str, const wcstring &wc, bool leading_dots_fail_to_match) {
|
||||
enum fuzzy_match_type_t match =
|
||||
wildcard_match_internal(str.c_str(), wc.c_str(), leading_dots_fail_to_match);
|
||||
wildcard_match_internal(str, wc, leading_dots_fail_to_match);
|
||||
return match != fuzzy_match_none;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user