Patch 8.2.4226 (after 8.2.4224)
Problem: Filter-map test fails.
Solution: Only reject number argument in Vim9 script.
Files: src/eval.c
*** ../vim-8.2.4225/src/eval.c 2022-01-26 18:25:47.685295581 +0000
--- src/eval.c 2022-01-26 21:14:01.760517399 +0000
***************
*** 291,297 ****
}
else
{
! s = tv_get_string_buf_chk_strict(expr, buf, TRUE);
if (s == NULL)
return FAIL;
s = skipwhite(s);
--- 291,297 ----
}
else
{
! s = tv_get_string_buf_chk_strict(expr, buf, in_vim9script());
if (s == NULL)
return FAIL;
s = skipwhite(s);
*** ../vim-8.2.4225/src/version.c 2022-01-26 21:01:11.192928481 +0000
--- src/version.c 2022-01-26 21:14:44.155628062 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4226,
/**/
--
Communication is one of the most compli..., eh, well, it's hard.
You know what I mean. Not?
/// 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/20220126211730.E3B361C05DA%40moolenaar.net.