mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.2251: test failures in legacy script
Problem: Test failures in legacy script. Solution: Check for Vim9 script.
This commit is contained in:
parent
de4f95b041
commit
a04d447d3a
@ -3777,7 +3777,7 @@ eval_index(
|
||||
{
|
||||
range = TRUE;
|
||||
++*arg;
|
||||
if (!IS_WHITE_OR_NUL(**arg) && **arg != ']')
|
||||
if (vim9 && !IS_WHITE_OR_NUL(**arg) && **arg != ']')
|
||||
{
|
||||
semsg(_(e_white_space_required_before_and_after_str), ":");
|
||||
if (!empty1)
|
||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2251,
|
||||
/**/
|
||||
2250,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user