summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-01-02 16:38:07 +0100
committerBram Moolenaar <Bram@vim.org>2020-01-02 16:38:07 +0100
commit7fc4785ea19306b7e94beb61f226cf40c32b1aba (patch)
tree09954565feac912c49ce0547f4be8541c2f6c76c
parentb9adef79eca6f95bc7376ff3a6a383e436c5d6ea (diff)
downloadvim-git-8.2.0079.tar.gz
patch 8.2.0079: Python 3 unicode test still fails on MS-Windowsv8.2.0079
Problem: Python 3 unicode test still fails on MS-Windows. Solution: Do not set 'encoding' to "euc-tw" on MS-Windows.
-rw-r--r--src/testdir/test_python3.vim6
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim
index 4cb509456..aec7721af 100644
--- a/src/testdir/test_python3.vim
+++ b/src/testdir/test_python3.vim
@@ -180,10 +180,10 @@ func Test_unicode()
if !has('win32')
set encoding=debug
py3 print('hello')
- endif
- set encoding=euc-tw
- py3 print('hello')
+ set encoding=euc-tw
+ py3 print('hello')
+ endif
set encoding=utf8
endfunc
diff --git a/src/version.c b/src/version.c
index 4516eb71b..052b6341e 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 */
/**/
+ 79,
+/**/
78,
/**/
77,