public: allow matching anything in matchpattern
This commit is contained in:
parent
cd46ad19a3
commit
4031f5cb01
1 changed files with 6 additions and 1 deletions
|
@ -954,7 +954,12 @@ skipwhite:
|
||||||
|
|
||||||
int matchpattern( const char *in, const char *pattern, qboolean caseinsensitive )
|
int matchpattern( const char *in, const char *pattern, qboolean caseinsensitive )
|
||||||
{
|
{
|
||||||
return matchpattern_with_separator( in, pattern, caseinsensitive, "/\\:", false );
|
const char *separators = "/\\:";
|
||||||
|
|
||||||
|
if( !Q_strcmp( pattern, "*" ))
|
||||||
|
separators = "";
|
||||||
|
|
||||||
|
return matchpattern_with_separator( in, pattern, caseinsensitive, separators, false );
|
||||||
}
|
}
|
||||||
|
|
||||||
// wildcard_least_one: if true * matches 1 or more characters
|
// wildcard_least_one: if true * matches 1 or more characters
|
||||||
|
|
Loading…
Add table
Reference in a new issue