Compare commits

..

No commits in common. "87080167529689f2e51c0fbdb36602d6df1929c0" and "dc95b7947d8427e6a98ca8f004cf902201c72010" have entirely different histories.

View File

@ -161,9 +161,11 @@ int regex_match(const char * const pattern,
}
if (*(pattern_pointer + 1) == '<'
&& (is_word_separator(*string_pointer))) {
&& (is_word_separator(*string_pointer))
|| string_pointer == string_start) {
pattern_pointer += 2;
string_pointer += 1;
match_offset = string_pointer - (string_start + string_offset);
continue;
}