vim-patch:7.4.2076

Problem:    Syntax error when dict has '>' key.
Solution:   Check for endchar. (Ken Takata)

4f0383bc3f
This commit is contained in:
Michael Ennen 2016-12-14 17:33:20 -07:00
parent fc46efd3f2
commit a0ce663710
3 changed files with 8 additions and 3 deletions

View File

@ -284,5 +284,3 @@ func Test_named_function_closure()
call garbagecollect() call garbagecollect()
call assert_equal(14, s:Abar()) call assert_equal(14, s:Abar())
endfunc endfunc
=======
>>>>>>> 381a8796... vim-patch:7.4.2044

View File

@ -364,7 +364,7 @@ static int included_patches[] = {
// 2079 NA // 2079 NA
// 2078 NA // 2078 NA
2077, 2077,
// 2076, 2076,
2075, 2075,
2074, 2074,
// 2073 NA // 2073 NA

7
test.vim Normal file
View File

@ -0,0 +1,7 @@
func! Afoo()
let x = 14
func! s:Abar()
return x
endfunc
endfunc
call Afoo()