Avoid funcref

This commit is contained in:
Andy K. Massimino
2017-11-14 12:57:13 -05:00
parent 8dea5e0844
commit a189eabbe7

View File

@@ -548,7 +548,7 @@ function! s:parser_delim_new(lnum, cnum, opts) " {{{1
\ 'side' : l:side,
\ 'is_open' : (l:side ==# 'open') ? 1 : 0,
\ 'class' : [(l:i / l:ns), l:id],
\ 'get_matching' : funcref('s:get_matching_delims'),
\ 'get_matching' : function('s:get_matching_delims'),
\ 'regexone' : l:thisre,
\ 'regextwo' : l:thisrebr,
\ 'rematch' : l:re,