0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.2.4069: Vim9: import test fails on MS-Windows

Problem:    Vim9: import test fails on MS-Windows.
Solution:   Ignore case.  Adjust test to avoid name that only differs in case.
This commit is contained in:
Bram Moolenaar
2022-01-12 15:15:27 +00:00
parent f479cac084
commit 5d9826973d
4 changed files with 8 additions and 6 deletions

View File

@@ -906,7 +906,7 @@ get_lval(
NULL, TRUE) == -1)
{
*p = cc;
return FAIL;
return NULL;
}
*p = cc;
}
@@ -5903,7 +5903,7 @@ handle_subscript(
type_T *type;
// Found script from "import {name} as name", script item name must
// follow.
// follow. "rettv->vval.v_number" has the script ID.
if (**arg != '.')
{
if (verbose)