1
1

search: match a beginning-of-line anchor just once per line

This fixes https://savannah.gnu.org/bugs/?48635.
Этот коммит содержится в:
Benno Schulenberg 2016-07-27 09:04:06 +02:00
родитель 68cfb08888
Коммит c88fae3310

Просмотреть файл

@ -745,8 +745,8 @@ ssize_t do_replace_loop(
}
#ifdef HAVE_REGEX_H
/* Don't find the same zero-length match again. */
if (match_len == 0)
/* Don't find the same zero-length or BOL match again. */
if (match_len == 0 || (*needle == '^' && ISSET(USE_REGEXP)))
match_len++;
#endif