diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-10-09 14:04:14 +0800 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-11-01 14:05:14 +0800 |
| commit | 065bbc8f5903c39a7ed4cca60d721dc92741154a (patch) | |
| tree | f9379f55c4fa5809c01259f636662e1097ffee81 /src/selectors.cc | |
| parent | 9305fa136918010fab36c09e7174c5a45b422141 (diff) | |
Regex: switch to custom impl, use boost for checking
Diffstat (limited to 'src/selectors.cc')
| -rw-r--r-- | src/selectors.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selectors.cc b/src/selectors.cc index e751de41..076edd7b 100644 --- a/src/selectors.cc +++ b/src/selectors.cc @@ -837,7 +837,7 @@ void select_buffer(SelectionList& selections) selections = SelectionList{ buffer, target_eol({{0,0}, buffer.back_coord()}) }; } -static RegexConstant::match_flag_type +static RegexExecFlags match_flags(const Buffer& buf, const BufferIterator& begin, const BufferIterator& end) { return match_flags(is_bol(begin.coord()), is_eol(buf, end.coord()), |
