comparison src/errors.h @ 26024:cb5f2515a450 v8.2.3546

patch 8.2.3546: build failure without the +eval feature Commit: https://github.com/vim/vim/commit/09f7723d5a8694889350b13e3f6b4a9c3ed4c41f Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Oct 20 17:21:24 2021 +0100 patch 8.2.3546: build failure without the +eval feature Problem: Build failure without the +eval feature. Solution: Add #ifdef. (closes https://github.com/vim/vim/issues/9025)
author Bram Moolenaar <Bram@vim.org>
date Wed, 20 Oct 2021 18:30:03 +0200
parents 30e60bfd5fb3
children 92c424550367
comparison
equal deleted inserted replaced
26023:2f42137853b0 26024:cb5f2515a450
158 INIT(= N_("E710: List value has more items than targets")); 158 INIT(= N_("E710: List value has more items than targets"));
159 EXTERN char e_list_value_does_not_have_enough_items[] 159 EXTERN char e_list_value_does_not_have_enough_items[]
160 INIT(= N_("E711: List value does not have enough items")); 160 INIT(= N_("E711: List value does not have enough items"));
161 EXTERN char e_cannot_slice_dictionary[] 161 EXTERN char e_cannot_slice_dictionary[]
162 INIT(= N_("E719: Cannot slice a Dictionary")); 162 INIT(= N_("E719: Cannot slice a Dictionary"));
163 #endif
163 EXTERN char e_conflicts_with_value_of_listchars[] 164 EXTERN char e_conflicts_with_value_of_listchars[]
164 INIT(= N_("E834: Conflicts with value of 'listchars'")); 165 INIT(= N_("E834: Conflicts with value of 'listchars'"));
165 EXTERN char e_conflicts_with_value_of_fillchars[] 166 EXTERN char e_conflicts_with_value_of_fillchars[]
166 INIT(= N_("E835: Conflicts with value of 'fillchars'")); 167 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
168 #ifdef FEAT_EVAL
167 EXTERN char e_assert_fails_second_arg[] 169 EXTERN char e_assert_fails_second_arg[]
168 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings")); 170 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
169 EXTERN char e_using_invalid_value_as_string_str[] 171 EXTERN char e_using_invalid_value_as_string_str[]
170 INIT(= N_("E908: using an invalid value as a String: %s")); 172 INIT(= N_("E908: using an invalid value as a String: %s"));
171 EXTERN char e_cannot_index_special_variable[] 173 EXTERN char e_cannot_index_special_variable[]