diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-29 22:58:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-29 22:58:21 +0100 |
commit | 39536dd557e847e80572044c2be319db5886abe3 (patch) | |
tree | a9223044558edf150a07d0fde3f8259c0a655561 /src/testdir/test_writefile.vim | |
parent | 2a4857a1fcf1d188e5b985ac21bcfc532eddde94 (diff) | |
download | vim-git-39536dd557e847e80572044c2be319db5886abe3.tar.gz |
patch 8.1.0846: not easy to recognize the system Vim runs onv8.1.0846
Problem: Not easy to recognize the system Vim runs on.
Solution: Add more items to the features list. (Ozaki Kiichi, closes #3855)
Diffstat (limited to 'src/testdir/test_writefile.vim')
-rw-r--r-- | src/testdir/test_writefile.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_writefile.vim b/src/testdir/test_writefile.vim index 2e47b48a8..ff3675661 100644 --- a/src/testdir/test_writefile.vim +++ b/src/testdir/test_writefile.vim @@ -33,7 +33,7 @@ func Test_writefile_fails_gently() endfunc func Test_writefile_fails_conversion() - if !has('iconv') || system('uname -s') =~ 'SunOS' + if !has('iconv') || has('sun') return endif set nobackup nowritebackup |