Skip to content

Commit 469f870

Browse files
committed
runtime(compiler): Fix invalid expression in tombi compiler after d659faf
related: #18590 Signed-off-by: Christian Brabandt <[email protected]>
1 parent d659faf commit 469f870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/compiler/tombi.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if !exists('s:tombi_nocolor')
2424

2525
function s:VersionGE(ver, req) abort
2626
" Compare semantic versions a.b.c ≥ x.y.z
27-
let l:pa = map(split(a:ver), '\.'), 'str2nr(v:val)')
27+
let l:pa = map(split(a:ver, '\.'), 'str2nr(v:val)')
2828
let l:pb = map(split(a:req, '\.'), 'str2nr(v:val)')
2929
while len(l:pa) < 3 | call add(l:pa, 0) | endwhile
3030
while len(l:pb) < 3 | call add(l:pb, 0) | endwhile

0 commit comments

Comments
 (0)