]> granicus.if.org Git - vim/commitdiff
patch 7.4.2088 v7.4.2088
authorBram Moolenaar <Bram@vim.org>
Thu, 21 Jul 2016 20:03:02 +0000 (22:03 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 21 Jul 2016 20:03:02 +0000 (22:03 +0200)
Problem:    Keymap test fails with normal features.
Solution:   Bail out if the keymap feature is not supported.

src/testdir/test_digraph.vim
src/version.c

index 2840229007309b86c3f4a1a30d9ccbf676852261..95500853f2f56c873530c17e9b8b5aa2764a9e6b 100644 (file)
@@ -437,6 +437,9 @@ func! Test_digraphs_output()
 endfunc
 
 func! Test_loadkeymap()
+  if !has('keymap')
+    return
+  endif
   new
   set keymap=czech
   set iminsert=0
index 8f60ccd4111cb4391bd72c57fb641f738c4f0645..8883c29f0869a1a69c4ad42066e884355a47b838 100644 (file)
@@ -758,6 +758,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2088,
 /**/
     2087,
 /**/