# HG changeset patch # User Christian Brabandt # Date 1469132105 -7200 # Node ID b95d0a6a64ffa18088d5e9987e1452ccd0e250e1 # Parent c0021078f0b34c482647e0ac23c2e2037db75800 commit https://github.com/vim/vim/commit/f36213597d737ab500771e87edcf121acd55e277 Author: Bram Moolenaar Date: Thu Jul 21 22:03:02 2016 +0200 patch 7.4.2088 Problem: Keymap test fails with normal features. Solution: Bail out if the keymap feature is not supported. diff --git a/src/testdir/test_digraph.vim b/src/testdir/test_digraph.vim --- a/src/testdir/test_digraph.vim +++ b/src/testdir/test_digraph.vim @@ -437,6 +437,9 @@ func! Test_digraphs_output() endfunc func! Test_loadkeymap() + if !has('keymap') + return + endif new set keymap=czech set iminsert=0 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2088, +/**/ 2087, /**/ 2086,