We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7cdca commit 2466aeaCopy full SHA for 2466aea
2 files changed
src/testdir/test_python3.vim
@@ -170,8 +170,9 @@ endfunc
170
171
func Test_unicode()
172
" this crashed Vim once
173
- let save_tenc = &tenc
174
- set tenc=
+ if &tenc != ''
+ throw "Skipped: 'termencoding' is not empty"
175
+ endif
176
177
set encoding=utf32
178
py3 print('hello')
@@ -183,5 +184,4 @@ func Test_unicode()
183
184
185
186
set encoding=utf8
- let &tenc = save_tenc
187
endfunc
src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
742
743
static int included_patches[] =
744
{ /* Add new patch number below this line */
745
+/**/
746
+ 75,
747
/**/
748
74,
749
0 commit comments