Skip to content

Commit 276981e

Browse files
committed
add abort
1 parent 04faeeb commit 276981e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/vimlparser.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5523,7 +5523,7 @@ function! s:Compiler.compile_lambda(node) abort
55235523
return printf('(lambda (%s) %s)', join(rlist, ' '), self.compile(a:node.left))
55245524
endfunction
55255525

5526-
function! s:Compiler.compile_heredoc(node)
5526+
function! s:Compiler.compile_heredoc(node) abort
55275527
if empty(a:node.rlist)
55285528
let rlist = '(list)'
55295529
else

0 commit comments

Comments
 (0)