comparison src/errors.h @ 25388:83e906028a9d v8.2.3231

patch 8.2.3231: build failure with small features Commit: https://github.com/vim/vim/commit/9088784972c0ed72997de8752964d6b587218778 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 27 22:35:42 2021 +0200 patch 8.2.3231: build failure with small features Problem: Build failure with small features. Solution: Adjust #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Jul 2021 22:45:03 +0200
parents e8e2c4d33b9b
children 9203b28ab453
comparison
equal deleted inserted replaced
25387:beb96a39cfac 25388:83e906028a9d
222 INIT(= N_("E1023: Using a Number as a Bool: %lld")); 222 INIT(= N_("E1023: Using a Number as a Bool: %lld"));
223 EXTERN char e_using_number_as_string[] 223 EXTERN char e_using_number_as_string[]
224 INIT(= N_("E1024: Using a Number as a String")); 224 INIT(= N_("E1024: Using a Number as a String"));
225 EXTERN char e_using_rcurly_outside_if_block_scope[] 225 EXTERN char e_using_rcurly_outside_if_block_scope[]
226 INIT(= N_("E1025: Using } outside of a block scope")); 226 INIT(= N_("E1025: Using } outside of a block scope"));
227 #endif
227 EXTERN char e_missing_rcurly[] 228 EXTERN char e_missing_rcurly[]
228 INIT(= N_("E1026: Missing }")); 229 INIT(= N_("E1026: Missing }"));
230 #ifdef FEAT_EVAL
229 EXTERN char e_missing_return_statement[] 231 EXTERN char e_missing_return_statement[]
230 INIT(= N_("E1027: Missing return statement")); 232 INIT(= N_("E1027: Missing return statement"));
231 EXTERN char e_compiling_def_function_failed[] 233 EXTERN char e_compiling_def_function_failed[]
232 INIT(= N_("E1028: Compiling :def function failed")); 234 INIT(= N_("E1028: Compiling :def function failed"));
233 EXTERN char e_expected_str_but_got_str[] 235 EXTERN char e_expected_str_but_got_str[]