vim-patch:8.0.0004 (#7044)

Problem:    A string argument for function() that is not a function name
            results in an error message with NULL. (Christian Brabandt)
Solution:   Use the argument for the error message.

5582ef1438
This commit is contained in:
KunMing Xie
2017-07-17 22:38:03 +08:00
committed by Justin M. Keyes
parent a76da96e86
commit 24a0d4e122
2 changed files with 4 additions and 1 deletions

View File

@@ -418,6 +418,9 @@ func Test_function_with_funcref()
let s:fref = function(s:f) let s:fref = function(s:f)
call assert_equal(v:t_string, s:fref('x')) call assert_equal(v:t_string, s:fref('x'))
call assert_fails("call function('s:f')", 'E700:') call assert_fails("call function('s:f')", 'E700:')
call assert_fails("call function('foo()')", 'E475:')
call assert_fails("call function('foo()')", 'foo()')
endfunc endfunc
func Test_funcref() func Test_funcref()

View File

@@ -725,7 +725,7 @@ static const int included_patches[] = {
// 7 NA // 7 NA
6, 6,
// 5 NA // 5 NA
// 4, 4,
// 3, // 3,
2, 2,
1, 1,