0
0
mirror of https://github.com/vim/vim.git synced 2025-10-03 05:14:07 -04:00

patch 7.4.1816

Problem:    Looping over a null list throws an error.
Solution:   Skip over the for loop.
This commit is contained in:
Bram Moolenaar
2016-05-01 23:05:53 +02:00
parent 9a3b3311d2
commit d8585eded6
3 changed files with 15 additions and 1 deletions

View File

@@ -83,3 +83,10 @@ func Test_getreg_empty_list()
call add(x, 'foo')
call assert_equal(['foo'], y)
endfunc
func Test_loop_over_null_list()
let null_list = submatch(1, 1)
for i in null_list
call assert_true(0, 'should not get here')
endfor
endfunc