Skip to content

Commit 195da7f

Browse files
committed
updated for version 7.3.386
Problem: Test 83 fails when iconv does not support cp932. (raf) Solution: Test if conversion works. (Yukihiro Nakadaira)
1 parent 84124b6 commit 195da7f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/testdir/test83.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Tests for tag search with !_TAG_FILE_ENCODING.
22

33
STARTTEST
44
:so mbyte.vim
5-
:if !has('iconv')
5+
:if !has('iconv') || iconv("\x82\x60", "cp932", "utf-8") != "\uff21"
66
: e! test.ok
77
: w! test.out
88
: qa!

src/version.c

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

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
386,
717719
/**/
718720
385,
719721
/**/

0 commit comments

Comments
 (0)