Patch 8.2.2251
Problem: Test failures in legacy script.
Solution: Check for Vim9 script.
Files: src/eval.c
*** ../vim-8.2.2250/src/eval.c 2020-12-30 20:39:17.454007601 +0100
--- src/eval.c 2020-12-30 21:10:42.204769089 +0100
***************
*** 3777,3783 ****
{
range = TRUE;
++*arg;
! if (!IS_WHITE_OR_NUL(**arg) && **arg != ']')
{
semsg(_(e_white_space_required_before_and_after_str), ":");
if (!empty1)
--- 3777,3783 ----
{
range = TRUE;
++*arg;
! if (vim9 && !IS_WHITE_OR_NUL(**arg) && **arg != ']')
{
semsg(_(e_white_space_required_before_and_after_str), ":");
if (!empty1)
*** ../vim-8.2.2250/src/version.c 2020-12-30 20:39:17.454007601 +0100
--- src/version.c 2020-12-30 21:12:20.008462468 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 2251,
/**/
--
hundred-and-one symptoms of being an internet addict:
52. You ask a plumber how much it would cost to replace the chair in front of
your computer with a toilet.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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/202012302018.0BUKI10H1032771%40masaka.moolenaar.net.