comparison src/vim9compile.c @ 23364:17a0e32eefd4 v8.2.2225

patch 8.2.2225: Vim9: error when using :import in legacy script twice Commit: https://github.com/vim/vim/commit/a6294955308fac1d14b9a8481e7f8581146c706c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 27 13:39:50 2020 +0100 patch 8.2.2225: Vim9: error when using :import in legacy script twice Problem: Vim9: error when using :import in legacy script twice. Solution: Make it possible to redefine an import when reloading.
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Dec 2020 13:45:04 +0100
parents f181fe2150ab
children a7cbdb9294c4
comparison
equal deleted inserted replaced
23363:b5274c21249f 23364:17a0e32eefd4
2414 } 2414 }
2415 2415
2416 import = find_imported(name, 0, cctx); 2416 import = find_imported(name, 0, cctx);
2417 if (import != NULL) 2417 if (import != NULL)
2418 { 2418 {
2419 if (import->imp_all) 2419 if (import->imp_flags & IMP_FLAGS_STAR)
2420 { 2420 {
2421 char_u *p = skipwhite(*end); 2421 char_u *p = skipwhite(*end);
2422 char_u *exp_name; 2422 char_u *exp_name;
2423 int cc; 2423 int cc;
2424 ufunc_T *ufunc; 2424 ufunc_T *ufunc;