summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_functions.vim
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-06-14 13:10:15 +0100
committerBram Moolenaar <Bram@vim.org>2023-06-14 13:10:15 +0100
commit95707037afa1aeae4f3494dc623a721ceed7fc4e (patch)
treedd5ec603dd3c1a0d890140e84a99cbbf170cbb15 /src/testdir/test_functions.vim
parentd5b952a871835b057176fd37fc91b971e8e3f300 (diff)
patch 9.0.1629: having utf16idx() rounding up is inconvenientv9.0.1629
Problem: Having utf16idx() rounding up is inconvenient. Solution: Make utf16idx() round down. (Yegappan Lakshmanan, closes #12523)
Diffstat (limited to 'src/testdir/test_functions.vim')
-rw-r--r--src/testdir/test_functions.vim20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim
index d7e7f923ba..a17c19e179 100644
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -1518,14 +1518,14 @@ func Test_utf16idx_from_byteidx()
" UTF-16 index of a string with four byte characters
let str = 'a😊😊b'
call assert_equal(0, utf16idx(str, 0))
- call assert_equal(2, utf16idx(str, 1))
- call assert_equal(2, utf16idx(str, 2))
- call assert_equal(2, utf16idx(str, 3))
- call assert_equal(2, utf16idx(str, 4))
- call assert_equal(4, utf16idx(str, 5))
- call assert_equal(4, utf16idx(str, 6))
- call assert_equal(4, utf16idx(str, 7))
- call assert_equal(4, utf16idx(str, 8))
+ call assert_equal(1, utf16idx(str, 1))
+ call assert_equal(1, utf16idx(str, 2))
+ call assert_equal(1, utf16idx(str, 3))
+ call assert_equal(1, utf16idx(str, 4))
+ call assert_equal(3, utf16idx(str, 5))
+ call assert_equal(3, utf16idx(str, 6))
+ call assert_equal(3, utf16idx(str, 7))
+ call assert_equal(3, utf16idx(str, 8))
call assert_equal(5, utf16idx(str, 9))
call assert_equal(6, utf16idx(str, 10))
call assert_equal(-1, utf16idx(str, 11))
@@ -1621,8 +1621,8 @@ func Test_utf16idx_from_charidx()
" UTF-16 index of a string with four byte characters
let str = "a😊😊b"
call assert_equal(0, utf16idx(str, 0, v:false, v:true))
- call assert_equal(2, utf16idx(str, 1, v:false, v:true))
- call assert_equal(4, utf16idx(str, 2, v:false, v:true))
+ call assert_equal(1, utf16idx(str, 1, v:false, v:true))
+ call assert_equal(3, utf16idx(str, 2, v:false, v:true))
call assert_equal(5, utf16idx(str, 3, v:false, v:true))
call assert_equal(6, utf16idx(str, 4, v:false, v:true))
call assert_equal(-1, utf16idx(str, 5, v:false, v:true))