# HG changeset patch # User Bram Moolenaar # Date 1325246961 -3600 # Node ID ac16c62282ac0e961afa44b556fe850dd6c8e1aa # Parent a96cb758a8d7028aa117e78c8ea49f5a88a6a489 updated for version 7.3.387 Problem: Test 83 may fail for some encodings. Solution: Set 'encoding' to utf-8 earlier. diff --git a/src/testdir/test83.in b/src/testdir/test83.in --- a/src/testdir/test83.in +++ b/src/testdir/test83.in @@ -2,12 +2,12 @@ Tests for tag search with !_TAG_FILE_ENC STARTTEST :so mbyte.vim +:set enc=utf8 :if !has('iconv') || iconv("\x82\x60", "cp932", "utf-8") != "\uff21" : e! test.ok : w! test.out : qa! :endif -:set enc=utf8 :/^text for tags1$/,/^text for tags1$/+1w! Xtags1.txt :/^text for tags2$/,/^text for tags2$/+1w! Xtags2.txt diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 387, +/**/ 386, /**/ 385,