Fix crash during completion lookback

This commit is contained in:
daniel-mcclintock 2021-09-06 23:10:06 +10:00
parent e5c6c773e9
commit 8a8c172b93

View file

@ -2744,7 +2744,7 @@ void CodeEdit::_filter_code_completion_candidates_impl() {
/* If we have a space, previous word might be a keyword. eg "func |". */
} else if (cofs > 0 && line[cofs - 1] == ' ') {
int ofs = cofs - 1;
while (ofs >= 0 && line[ofs] == ' ') {
while (ofs > 0 && line[ofs] == ' ') {
ofs--;
}
prev_is_word = _is_char(line[ofs]);