mirror of
https://github.com/jarun/nnn.git
synced 2025-04-19 03:45:01 +00:00
Simplify visible()
This commit is contained in:
parent
d907c3f994
commit
3fa6a6272c
1 changed files with 1 additions and 3 deletions
4
noice.c
4
noice.c
|
@ -219,9 +219,7 @@ setfilter(regex_t *regex, char *filter)
|
|||
int
|
||||
visible(regex_t *regex, char *file)
|
||||
{
|
||||
if (regexec(regex, file, 0, NULL, 0) == 0)
|
||||
return 1;
|
||||
return 0;
|
||||
return regexec(regex, file, 0, NULL, 0) == 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Add table
Reference in a new issue