# HG changeset patch # User Christian Brabandt # Date 1452438905 -3600 # Node ID f73876aa9a131022a6c0dbcb3d73f1028206a1ae # Parent eab993bb6a617cb531179499806c3e7f8b1ee043 commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76 Author: Bram Moolenaar Date: Sun Jan 10 16:10:17 2016 +0100 patch 7.4.1081 Problem: No test for what previously caused a crash. Solution: Add test for unletting errmsg. diff --git a/src/testdir/test_unlet.vim b/src/testdir/test_unlet.vim --- a/src/testdir/test_unlet.vim +++ b/src/testdir/test_unlet.vim @@ -7,6 +7,12 @@ func Test_read_only() catch call assert_true(v:exception =~ ':E795:') endtry + try + " this caused a crash + unlet errmsg + catch + call assert_true(v:exception =~ ':E795:') + endtry endfunc func Test_existing() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1081, +/**/ 1080, /**/ 1079,