mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful
Problem: Vim9: the "autoload" argument of ":vim9script" is not useful. Solution: Remove the argument. (closes #9555)
This commit is contained in:
@@ -69,7 +69,6 @@ ex_vim9script(exarg_T *eap UNUSED)
|
||||
int sid = current_sctx.sc_sid;
|
||||
scriptitem_T *si;
|
||||
int found_noclear = FALSE;
|
||||
int found_autoload = FALSE;
|
||||
char_u *p;
|
||||
|
||||
if (!getline_equal(eap->getline, eap->cookie, getsourceline))
|
||||
@@ -96,20 +95,6 @@ ex_vim9script(exarg_T *eap UNUSED)
|
||||
}
|
||||
found_noclear = TRUE;
|
||||
}
|
||||
else if (STRNCMP(p, "autoload", 8) == 0 && IS_WHITE_OR_NUL(p[8]))
|
||||
{
|
||||
if (found_autoload)
|
||||
{
|
||||
semsg(_(e_duplicate_argument_str), p);
|
||||
return;
|
||||
}
|
||||
found_autoload = TRUE;
|
||||
if (script_name_after_autoload(si) == NULL)
|
||||
{
|
||||
emsg(_(e_using_autoload_in_script_not_under_autoload_directory));
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
semsg(_(e_invalid_argument_str), eap->arg);
|
||||
|
Reference in New Issue
Block a user