mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
Fix call site for wildcard_match_internal
This commit is contained in:
parent
a6f1e6119b
commit
bfa17ecff6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue