Skip to content

Commit 0f113e4

Browse files
k-takatabrammool
authored andcommitted
patch 8.2.4437: vartabs test fails on MS-Windows
Problem: Vartabs test fails on MS-Windows. Solution: Use iso8859-1 'encoding'. (Ken Takata, closes #9818)
1 parent 4e889f9 commit 0f113e4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/testdir/test_vartabs.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,10 +445,10 @@ endfunc
445445
func Test_vartabstop_latin1()
446446
let save_encoding = &encoding
447447
new
448-
set encoding=iso8859
449-
silent norm :se
448+
set encoding=iso8859-1
449+
silent exe "norm :se \<C-A>\<C-C>"
450450
set vartabstop=400
451-
norm i00
451+
exe "norm i00\t\<C-D>"
452452
bwipe!
453453
let &encoding = save_encoding
454454
endfunc

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
4437,
753755
/**/
754756
4436,
755757
/**/

0 commit comments

Comments
 (0)