diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-05 22:07:32 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-05 22:07:32 +0000 |
commit | 525eba00ef818f50fb3ba71c54409a7a8962b344 (patch) | |
tree | 61282cb0fd677c9f1481873d58484c799fc513a8 /src/errors.h | |
parent | 9fb7b42935f13b5d3407eb82b151da1e9b4b6048 (diff) | |
download | vim-git-525eba00ef818f50fb3ba71c54409a7a8962b344.tar.gz |
patch 8.2.4516: build failure without the +eval featurev8.2.4516
Problem: Build failure without the +eval feature.
Solution: Move error message outside of #ifdef.
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h index 6f275fa41..b021f8204 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3246,6 +3246,6 @@ EXTERN char e_cannot_use_s_colon_in_vim9_script_str[] INIT(= N_("E1268: Cannot use s: in Vim9 script: %s")); EXTERN char e_cannot_create_vim9_script_variable_in_function_str[] INIT(= N_("E1269: Cannot create a Vim9 script variable in a function: %s")); +#endif EXTERN char e_cannot_use_s_backslash_in_vim9_script[] INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script")); -#endif |