mirror of
https://github.com/vim/vim
synced 2025-08-29 04:15:47 +00:00
patch 8.2.3724: build error for missing error message in small build
Problem: Build error for missing error message in small build. Solution: Correct #ifdef.
This commit is contained in:
@ -316,8 +316,10 @@ EXTERN char e_cannot_index_number[]
|
|||||||
INIT(= N_("E1062: Cannot index a Number"));
|
INIT(= N_("E1062: Cannot index a Number"));
|
||||||
EXTERN char e_type_mismatch_for_v_variable[]
|
EXTERN char e_type_mismatch_for_v_variable[]
|
||||||
INIT(= N_("E1063: Type mismatch for v: variable"));
|
INIT(= N_("E1063: Type mismatch for v: variable"));
|
||||||
|
#endif
|
||||||
EXTERN char e_yank_register_changed_while_using_it[]
|
EXTERN char e_yank_register_changed_while_using_it[]
|
||||||
INIT(= N_("E1064: Yank register changed while using it"));
|
INIT(= N_("E1064: Yank register changed while using it"));
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
// E1065 unused
|
// E1065 unused
|
||||||
EXTERN char e_cannot_declare_a_register_str[]
|
EXTERN char e_cannot_declare_a_register_str[]
|
||||||
INIT(= N_("E1066: Cannot declare a register: %s"));
|
INIT(= N_("E1066: Cannot declare a register: %s"));
|
||||||
|
@ -753,6 +753,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 */
|
||||||
|
/**/
|
||||||
|
3724,
|
||||||
/**/
|
/**/
|
||||||
3723,
|
3723,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user