From: Christian Brabandt Date: Tue, 28 Oct 2025 20:50:44 +0000 (+0000) Subject: runtime(compiler): Fix invalid expression in tombi compiler after d659fafcc X-Git-Tag: v9.1.1887~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=469f870c5e06cb4c1f4b78aa1a7cc354059631d0;p=thirdparty%2Fvim.git runtime(compiler): Fix invalid expression in tombi compiler after d659fafcc related: #18590 Signed-off-by: Christian Brabandt --- diff --git a/runtime/compiler/tombi.vim b/runtime/compiler/tombi.vim index e79a1368cd..bab95ba24c 100644 --- a/runtime/compiler/tombi.vim +++ b/runtime/compiler/tombi.vim @@ -24,7 +24,7 @@ if !exists('s:tombi_nocolor') function s:VersionGE(ver, req) abort " Compare semantic versions a.b.c ≥ x.y.z - let l:pa = map(split(a:ver), '\.'), 'str2nr(v:val)') + let l:pa = map(split(a:ver, '\.'), 'str2nr(v:val)') let l:pb = map(split(a:req, '\.'), 'str2nr(v:val)') while len(l:pa) < 3 | call add(l:pa, 0) | endwhile while len(l:pb) < 3 | call add(l:pb, 0) | endwhile