commit | 5d9826973d9f4c6ffbb5648676bb628660c62906 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jan 12 15:15:27 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jan 12 15:15:27 2022 +0000 |
tree | 06681a69b48663b7a0b9486bbc4b041dfe5f0603 | |
parent | f479cac084c7ddd9f20944c8978d39f3ef092868 [diff] [blame] |
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.
diff --git a/src/scriptfile.c b/src/scriptfile.c index 3508139..56186ff 100644 --- a/src/scriptfile.c +++ b/src/scriptfile.c
@@ -2156,7 +2156,7 @@ if (p == NULL) return NULL; - prefix = vim_strsave(p); + prefix = strlow_save(p); if (prefix == NULL) return NULL;