diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim index cd5ac9cc09..f722edca55 100644 --- a/src/testdir/test_python3.vim +++ b/src/testdir/test_python3.vim @@ -170,8 +170,9 @@ endfunc func Test_unicode() " this crashed Vim once - let save_tenc = &tenc - set tenc= + if &tenc != '' + throw "Skipped: 'termencoding' is not empty" + endif set encoding=utf32 py3 print('hello') @@ -183,5 +184,4 @@ func Test_unicode() py3 print('hello') set encoding=utf8 - let &tenc = save_tenc endfunc diff --git a/src/version.c b/src/version.c index 30f4465f6e..16544f7ea9 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 75, /**/ 74, /**/