mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user