mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-25 10:32:19 +03:00
Avoid an unneeded call to ensure_char_start
This commit is contained in:
parent
d6a2d77857
commit
48a296dc71
@ -573,10 +573,9 @@ void select_all_matches(SelectionList& selections, const Regex& regex)
|
||||
for (; re_it != re_end; ++re_it)
|
||||
{
|
||||
auto begin = ensure_char_start(buffer, (*re_it)[0].first);
|
||||
auto end = ensure_char_start(buffer, (*re_it)[0].second);
|
||||
|
||||
if (begin == sel_end)
|
||||
continue;
|
||||
auto end = ensure_char_start(buffer, (*re_it)[0].second);
|
||||
|
||||
CaptureList captures;
|
||||
for (auto& match : *re_it)
|
||||
|
Loading…
Reference in New Issue
Block a user