Hans Leidekker (@hans) commented about programs/findstr/main.c:
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, "\\<") || strstr(regexp, "\\>")) FIXME("word position (i.e. \\< and \\>) not supported\n"); + if ((strstr(regexp, "\\<") && strstr(regexp, "\\<") != regexp) || strstr(regexp, "\\>")) FIXME("word position (i.e. \\< and \\>) not supported\n"); Please wrap this long line.
``` if ((strstr(regexp, "\\<") && strstr(regexp, "\\<") != regexp) || strstr(regexp, "\\>")) FIXME("word position (i.e. \\< and \\>) not supported\n"); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10294#note_132724