diff options
-rw-r--r-- | src/testdir/test_python3.vim | 6 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim index f722edca5..4cb509456 100644 --- a/src/testdir/test_python3.vim +++ b/src/testdir/test_python3.vim @@ -177,8 +177,10 @@ func Test_unicode() set encoding=utf32 py3 print('hello') - set encoding=debug - py3 print('hello') + if !has('win32') + set encoding=debug + py3 print('hello') + endif set encoding=euc-tw py3 print('hello') diff --git a/src/version.c b/src/version.c index 16544f7ea..263ffb012 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 76, +/**/ 75, /**/ 74, |