changeset 10202:8335fdda6d4d v8.0.0002

commit https://github.com/vim/vim/commit/9e1e7afc1f29b67fe3721442b49af3b20644a3ee Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 12 16:31:10 2016 +0200 patch 8.0.0002 Problem: The netrw plugin does not work. Solution: Make it accept version 8.0.
author Christian Brabandt <cb@256bit.org>
date Mon, 12 Sep 2016 16:45:11 +0200
parents 609d97f840c4
children 4c33241b72d4
files runtime/autoload/netrw.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/autoload/netrw.vim
+++ b/runtime/autoload/netrw.vim
@@ -22,8 +22,8 @@
 if &cp || exists("g:loaded_netrw")
   finish
 endif
-" netrw requires vim having patch 213; netrw will benefit from vim's having patch#656, too
-if v:version < 704 || !has("patch213")
+" netrw requires vim having patch 7.4.213; netrw will benefit from vim's having patch#656, too
+if v:version < 704 || (v:version == 704 && !has("patch213"))
  if !exists("s:needpatch213")
   unsilent echomsg "***sorry*** this version of netrw requires vim v7.4 with patch 213"
  endif
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2,
+/**/
     1,
 /**/
     0