diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-30 13:09:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-30 13:09:21 +0100 |
commit | deaf7b739791095e2c98a7087dfe9b3c8dfd56f2 (patch) | |
tree | 2c33adf47be7066fc996a602f15c8a6e96678936 /src/testdir/test83.in | |
parent | ff0a4809e3a742cffb5bf441012c99d625363b24 (diff) | |
download | vim-git-deaf7b739791095e2c98a7087dfe9b3c8dfd56f2.tar.gz |
updated for version 7.3.387v7.3.387
Problem: Test 83 may fail for some encodings.
Solution: Set 'encoding' to utf-8 earlier.
Diffstat (limited to 'src/testdir/test83.in')
-rw-r--r-- | src/testdir/test83.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test83.in b/src/testdir/test83.in index 09ef0b455..297d560d2 100644 --- a/src/testdir/test83.in +++ b/src/testdir/test83.in @@ -2,12 +2,12 @@ Tests for tag search with !_TAG_FILE_ENCODING. 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 |