diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-08 23:09:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-08 23:09:48 +0100 |
commit | af630d4f7f8daa7edbda0b607d32d39a5feae9d9 (patch) | |
tree | 656ddfe5538ace754e16bef60967ed8f1a5ade31 | |
parent | 54d6fe5e60c0c488a424c078963ead40ae7dc397 (diff) | |
download | vim-git-af630d4f7f8daa7edbda0b607d32d39a5feae9d9.tar.gz |
patch 8.1.0884: double check for bsd systemsv8.1.0884
Problem: Double check for bsd systems.
Solution: Delete the old line.
-rw-r--r-- | src/testdir/test_functions.vim | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim index e75a8965a..69e6ce0f8 100644 --- a/src/testdir/test_functions.vim +++ b/src/testdir/test_functions.vim @@ -1237,7 +1237,6 @@ func Test_platform_name() if has('unix') && executable('uname') let uname = system('uname') call assert_equal(uname =~? 'BeOS', has('beos')) - call assert_equal(uname =~? 'BSD\|DragonFly', has('bsd')) " GNU userland on BSD kernels (e.g., GNU/kFreeBSD) don't have BSD defined call assert_equal(uname =~? '\%(GNU/k\w\+\)\@<!BSD\|DragonFly', has('bsd')) call assert_equal(uname =~? 'HP-UX', has('hpux')) diff --git a/src/version.c b/src/version.c index bf1e46696..b08bd8228 100644 --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 884, +/**/ 883, /**/ 882, |