mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Use FNM_IGNORECASE if present, from Eric N Vander Weele in GitHub issue 2067.
This commit is contained in:
parent
cdf138372c
commit
74b424075c
4
compat.h
4
compat.h
@ -171,8 +171,12 @@ void warnx(const char *, ...);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef FNM_CASEFOLD
|
#ifndef FNM_CASEFOLD
|
||||||
|
#ifdef FNM_IGNORECASE
|
||||||
|
#define FNM_CASEFOLD FNM_IGNORECASE
|
||||||
|
#else
|
||||||
#define FNM_CASEFOLD 0
|
#define FNM_CASEFOLD 0
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef INFTIM
|
#ifndef INFTIM
|
||||||
#define INFTIM -1
|
#define INFTIM -1
|
||||||
|
Loading…
Reference in New Issue
Block a user