diff options
author | altermo <107814000+altermo@users.noreply.github.com> | 2024-03-04 12:08:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 19:08:23 +0800 |
commit | a8131aee9ecc640415903d590b15863ce1c99112 (patch) | |
tree | f7eb08232faf21903db4ea465e380087e24b8475 /test/functional | |
parent | 3df1211ebc4c7ec4562d0ad0fa51a24569b81e15 (diff) | |
download | rneovim-a8131aee9ecc640415903d590b15863ce1c99112.tar.gz rneovim-a8131aee9ecc640415903d590b15863ce1c99112.tar.bz2 rneovim-a8131aee9ecc640415903d590b15863ce1c99112.zip |
fix(tohtml): replace hex escape with digit escape (#27728)
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/plugin/tohtml_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/tohtml_spec.lua b/test/functional/plugin/tohtml_spec.lua index 66dcfde3aa..0d0f10671f 100644 --- a/test/functional/plugin/tohtml_spec.lua +++ b/test/functional/plugin/tohtml_spec.lua @@ -315,7 +315,7 @@ describe(':TOhtml', function() fn.setline(1, '\tfoo\t') fn.setline(2, ' foo foo ') fn.setline(3, ' foo foo ') - fn.setline(4, 'foo\x2cfoo') + fn.setline(4, 'foo\194\160 \226\128\175foo') run_tohtml_and_assert(screen) exec('new|only') fn.setline(1, '\tfoo\t') |