Compare commits

...

2 Commits

Author SHA1 Message Date
8708016752 Merge branch 'master' of https://git.lain.church/emil/hl 2023-08-21 16:27:01 +02:00
3f1dade785 fixed retarded comit 2023-08-21 16:26:41 +02:00

View File

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