diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-18 16:26:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-18 16:26:24 +0000 |
commit | fd218c8a36e7ed33f7a205163690c5b7d2f31f8a (patch) | |
tree | dafd764852a4620a875df01494dc9d3199b6da3f /src/errors.h | |
parent | 6079da7cfb10c798535224c92db7fedd3914cb71 (diff) | |
download | vim-git-fd218c8a36e7ed33f7a205163690c5b7d2f31f8a.tar.gz |
patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not usefulv8.2.4136
Problem: Vim9: the "autoload" argument of ":vim9script" is not useful.
Solution: Remove the argument. (closes #9555)
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/errors.h b/src/errors.h index e576f810c..0d11416a1 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3208,8 +3208,7 @@ EXTERN char e_cannot_import_dot_vim_without_using_as[] INIT(= N_("E1261: Cannot import .vim without using \"as\"")); EXTERN char e_cannot_import_same_script_twice_str[] INIT(= N_("E1262: Cannot import the same script twice: %s")); -EXTERN char e_using_autoload_in_script_not_under_autoload_directory[] - INIT(= N_("E1263: Using autoload in a script not under an autoload directory")); +// E1263 unused EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[] INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s")); EXTERN char e_cannot_use_partial_here[] |