diff --git a/src/spellsuggest.c b/src/spellsuggest.c index a6dbc78a46ab9..255f94de0af6d 100644 --- a/src/spellsuggest.c +++ b/src/spellsuggest.c @@ -1619,7 +1619,7 @@ suggest_trie_walk( // char, e.g., "thes," -> "these". p = fword + sp->ts_fidx; MB_PTR_BACK(fword, p); - if (!spell_iswordp(p, curwin)) + if (!spell_iswordp(p, curwin) && *preword != NUL) { p = preword + STRLEN(preword); MB_PTR_BACK(preword, p); diff --git a/src/testdir/test_spell.vim b/src/testdir/test_spell.vim index a3a9621cb0fff..b7437fd448011 100644 --- a/src/testdir/test_spell.vim +++ b/src/testdir/test_spell.vim @@ -839,6 +839,14 @@ func Test_spell_screendump() call delete('XtestSpell') endfunc +func Test_spell_single_word() + new + silent! norm 0R00 + spell! ß + silent 0norm 0r$ Dvz= + bwipe! +endfunc + let g:test_data_aff1 = [ \"SET ISO8859-1", \"TRY esianrtolcdugmphbyfvkwjkqxz-\xEB\xE9\xE8\xEA\xEF\xEE\xE4\xE0\xE2\xF6\xFC\xFB'ESIANRTOLCDUGMPHBYFVKWJKQXZ", diff --git a/src/version.c b/src/version.c index 7bb4236361bb1..73ba32ef24965 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3582, /**/ 3581, /**/