We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10561fe commit 54651f7Copy full SHA for 54651f7
src/testdir/test_compiler.vim
@@ -19,9 +19,8 @@ func Test_compiler()
19
w!
20
call feedkeys(":make\<CR>\<CR>", 'tx')
21
let a=execute('clist')
22
- call assert_equal("\n 1 Xfoo.pl:3: Global symbol \"\$foo\" "
23
- \ . "requires explicit package name "
24
- \ . "(did you forget to declare \"my $foo\"?)", a)
+ call assert_match("\n 1 Xfoo.pl:3: Global symbol \"\$foo\" "
+ \ . "requires explicit package name", a)
25
26
call delete('Xfoo.pl')
27
bw!
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 4,
766
/**/
767
3,
768
0 commit comments