We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f32c5cd commit 254b105Copy full SHA for 254b105
src/testdir/test_unlet.vim
@@ -7,6 +7,12 @@ func Test_read_only()
7
catch
8
call assert_true(v:exception =~ ':E795:')
9
endtry
10
+ try
11
+ " this caused a crash
12
+ unlet errmsg
13
+ catch
14
+ call assert_true(v:exception =~ ':E795:')
15
+ endtry
16
endfunc
17
18
func Test_existing()
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 1081,
746
/**/
747
1080,
748
0 commit comments