# HG changeset patch # User Bram Moolenaar # Date 1684082703 -7200 # Node ID f5946a50c93106387bad228c750baf2686980318 # Parent fa69eb358c4e6de7767da93ce6930b2c7b6dd846 patch 9.0.1555: setcharsearch() does not clear last searched char properly Commit: https://github.com/vim/vim/commit/e5d91ba1de83949eb9357c0fb8cbd91e7e69be6f Author: zeertzjq Date: Sun May 14 17:39:18 2023 +0100 patch 9.0.1555: setcharsearch() does not clear last searched char properly Problem: setcharsearch() does not clear last searched char properly. Solution: Do not accept lastc_bytelen smaller than one. (closes https://github.com/vim/vim/issues/12398) diff --git a/src/search.c b/src/search.c --- a/src/search.c +++ b/src/search.c @@ -496,7 +496,7 @@ last_csearch_until(void) } void -set_last_csearch(int c, char_u *s UNUSED, int len UNUSED) +set_last_csearch(int c, char_u *s, int len) { *lastc = c; lastc_bytelen = len; @@ -1789,7 +1789,7 @@ searchc(cmdarg_T *cap, int t_cmd) } else // repeat previous search { - if (*lastc == NUL && lastc_bytelen == 1) + if (*lastc == NUL && lastc_bytelen <= 1) return FAIL; if (dir) // repeat in opposite direction dir = -lastcdir; @@ -1833,7 +1833,7 @@ searchc(cmdarg_T *cap, int t_cmd) return FAIL; col -= (*mb_head_off)(p, p + col - 1) + 1; } - if (lastc_bytelen == 1) + if (lastc_bytelen <= 1) { if (p[col] == c && stop) break; diff --git a/src/testdir/test_charsearch.vim b/src/testdir/test_charsearch.vim --- a/src/testdir/test_charsearch.vim +++ b/src/testdir/test_charsearch.vim @@ -38,6 +38,8 @@ func Test_charsearch() " clear the character search call setcharsearch({'char' : ''}) call assert_equal('', getcharsearch().char) + call assert_beeps('normal ;') + call assert_beeps('normal ,') call assert_fails("call setcharsearch([])", 'E1206:') enew! diff --git a/src/testdir/test_charsearch_utf8.vim b/src/testdir/test_charsearch_utf8.vim --- a/src/testdir/test_charsearch_utf8.vim +++ b/src/testdir/test_charsearch_utf8.vim @@ -13,6 +13,13 @@ func Test_search_cmds() call assert_equal([0, 1, 43, 0], getpos('.')) normal! , call assert_equal([0, 1, 28, 0], getpos('.')) + call assert_equal('最', getcharsearch().char) + call setcharsearch({'char' : ''}) + call assert_equal('', getcharsearch().char) + call assert_beeps('normal ;') + call assert_equal([0, 1, 28, 0], getpos('.')) + call assert_beeps('normal ,') + call assert_equal([0, 1, 28, 0], getpos('.')) bw! endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1555, +/**/ 1554, /**/ 1553,