Patch 8.2.2699
Problem: Lua test fails.
Solution: Fix condition. (Yegappan Lakshmanan, closes #8060)
Files: src/testdir/test_lua.vim
*** ../vim-8.2.2698/src/testdir/test_lua.vim 2021-04-03 15:35:43.217048704
+0200
--- src/testdir/test_lua.vim 2021-04-03 17:11:40.498357804 +0200
***************
*** 20,26 ****
endif
let s:major = str2nr(s:luaver[0])
let s:minor = str2nr(s:luaver[1])
! if len(s:luaver >= 3)
let s:patch = str2nr(s:luaver[2])
else
let s:patch = 0
--- 20,26 ----
endif
let s:major = str2nr(s:luaver[0])
let s:minor = str2nr(s:luaver[1])
! if len(s:luaver) >= 3
let s:patch = str2nr(s:luaver[2])
else
let s:patch = 0
*** ../vim-8.2.2698/src/version.c 2021-04-03 15:35:43.221048697 +0200
--- src/version.c 2021-04-03 17:18:31.396988805 +0200
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 2699,
/**/
--
There is a difference between "should work" and "does work",
it's called testing.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202104031519.133FJN262545454%40masaka.moolenaar.net.