summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-08 23:09:48 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-08 23:09:48 +0100
commitaf630d4f7f8daa7edbda0b607d32d39a5feae9d9 (patch)
tree656ddfe5538ace754e16bef60967ed8f1a5ade31 /src
parent54d6fe5e60c0c488a424c078963ead40ae7dc397 (diff)
patch 8.1.0884: double check for bsd systemsv8.1.0884
Problem: Double check for bsd systems. Solution: Delete the old line.
Diffstat (limited to 'src')
-rw-r--r--src/testdir/test_functions.vim1
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim
index e75a8965a0..69e6ce0f8f 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 bf1e466964..b08bd82284 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,