# HG changeset patch # User Christian Brabandt # Date 1491058804 -7200 # Node ID 2db80d94107d43c32ab93e96020a2fc36b4c2d80 # Parent 4e4edcd01046282381ec4b3192dd6a639caf1803 patch 8.0.0534: defaults.vim does not work well with tiny features commit https://github.com/vim/vim/commit/33ccb24cf7891911561adccf9f2af8859e581198 Author: Bram Moolenaar Date: Sat Apr 1 16:59:29 2017 +0200 patch 8.0.0534: defaults.vim does not work well with tiny features Problem: Defaults.vim does not work well with tiny features. (crd477) Solution: When the +eval feature is not available always reset 'compatible'. diff --git a/runtime/defaults.vim b/runtime/defaults.vim --- a/runtime/defaults.vim +++ b/runtime/defaults.vim @@ -1,7 +1,7 @@ " The default vimrc file. " " Maintainer: Bram Moolenaar -" Last change: 2017 Mar 08 +" Last change: 2017 Apr 01 " " This is loaded if no vimrc file was found. " Except when Vim is run with "-u NONE" or "-C". @@ -26,6 +26,16 @@ if &compatible set nocompatible endif +" When the +eval feature is missing, the set command above will be skipped. +" Use a trick to reset compatible only when the +eval feature is missing. +if 1 + nnoremap : :" +endif +silent normal :set nocompatible +if 1 + nunmap : +endif + " Allow backspacing over everything in insert mode. set backspace=indent,eol,start diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 534, +/**/ 533, /**/ 532,