From: Trent Waddington <trent.waddington@tensorworks.com.au> --- programs/findstr/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/findstr/main.c b/programs/findstr/main.c index 2bb1e4b1939..891ee165fb3 100644 --- a/programs/findstr/main.c +++ b/programs/findstr/main.c @@ -172,7 +172,7 @@ static BOOL match_star(char c, const char *str, const char *regexp, UINT pos, BO static BOOL match_regexp(const char *str, const char *regexp, BOOL case_sensitive) { if (strstr(regexp, "[")) FIXME("character ranges (i.e. [abc], [^a-z]) are not supported\n"); - if (strstr(regexp, "\\>")) FIXME("end of word position (i.e. \\>) not supported\n"); + if (strstr(regexp, "\\<") != regexp || strstr(regexp, "\\>")) FIXME("word position (i.e. \\< and \\>) not supported\n"); if (regexp[0] == '\\' && regexp[1] == '<') return match_here(str, regexp, 2, case_sensitive); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10294