# HG changeset patch # User Christian Brabandt # Date 1458057605 -3600 # Node ID 8818bca7a824f6e2e792bcd92c0bc624072b9948 # Parent 487508c3348026fc741a9acf955831cfe9e8e678 commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368 Author: Bram Moolenaar Date: Tue Mar 15 16:53:26 2016 +0100 patch 7.4.1572 Problem: Setting 'compatible' in test influences following tests. Solution: Turn 'compatible' off again. diff --git a/src/testdir/test_backspace_opt.vim b/src/testdir/test_backspace_opt.vim --- a/src/testdir/test_backspace_opt.vim +++ b/src/testdir/test_backspace_opt.vim @@ -53,6 +53,7 @@ func Test_backspace_option() " Cleared when 'compatible' is set set compatible call assert_equal('', &backspace) + set nocompatible endfunc " vim: tabstop=2 shiftwidth=0 expandtab diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -744,6 +744,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1572, +/**/ 1571, /**/ 1570,