mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4068: Vim9: import test fails
Problem: Vim9: import test fails. Solution: Add missing change.
This commit is contained in:
@@ -1274,7 +1274,8 @@ do_source(
|
||||
|
||||
// See if we loaded this script before.
|
||||
sid = find_script_by_name(fname_exp);
|
||||
if (sid > 0 && ret_sid != NULL)
|
||||
if (sid > 0 && ret_sid != NULL
|
||||
&& SCRIPT_ITEM(sid)->sn_state != SN_STATE_NOT_LOADED)
|
||||
{
|
||||
// Already loaded and no need to load again, return here.
|
||||
*ret_sid = sid;
|
||||
|
Reference in New Issue
Block a user