mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.3546: build failure without the +eval feature
Problem: Build failure without the +eval feature. Solution: Add #ifdef. (closes #9025)
This commit is contained in:
@@ -160,10 +160,12 @@ EXTERN char e_list_value_does_not_have_enough_items[]
|
|||||||
INIT(= N_("E711: List value does not have enough items"));
|
INIT(= N_("E711: List value does not have enough items"));
|
||||||
EXTERN char e_cannot_slice_dictionary[]
|
EXTERN char e_cannot_slice_dictionary[]
|
||||||
INIT(= N_("E719: Cannot slice a Dictionary"));
|
INIT(= N_("E719: Cannot slice a Dictionary"));
|
||||||
|
#endif
|
||||||
EXTERN char e_conflicts_with_value_of_listchars[]
|
EXTERN char e_conflicts_with_value_of_listchars[]
|
||||||
INIT(= N_("E834: Conflicts with value of 'listchars'"));
|
INIT(= N_("E834: Conflicts with value of 'listchars'"));
|
||||||
EXTERN char e_conflicts_with_value_of_fillchars[]
|
EXTERN char e_conflicts_with_value_of_fillchars[]
|
||||||
INIT(= N_("E835: Conflicts with value of 'fillchars'"));
|
INIT(= N_("E835: Conflicts with value of 'fillchars'"));
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
EXTERN char e_assert_fails_second_arg[]
|
EXTERN char e_assert_fails_second_arg[]
|
||||||
INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
|
INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
|
||||||
EXTERN char e_using_invalid_value_as_string_str[]
|
EXTERN char e_using_invalid_value_as_string_str[]
|
||||||
|
@@ -757,6 +757,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3546,
|
||||||
/**/
|
/**/
|
||||||
3545,
|
3545,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user