forked from aniani/vim
patch 8.2.0971: build with tiny features fails
Problem: Build with tiny features fails. Solution: Add #ifdef.
This commit is contained in:
@@ -4538,7 +4538,13 @@ handle_version_response(int first, int *arg, int argc, char_u *tp)
|
|||||||
// Reset terminal properties that are set based on the termresponse.
|
// Reset terminal properties that are set based on the termresponse.
|
||||||
// Mainly useful for tests that send the termresponse multiple times.
|
// Mainly useful for tests that send the termresponse multiple times.
|
||||||
// For testing all props can be reset.
|
// For testing all props can be reset.
|
||||||
init_term_props(reset_term_props_on_termresponse);
|
init_term_props(
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
|
reset_term_props_on_termresponse
|
||||||
|
#else
|
||||||
|
FALSE
|
||||||
|
#endif
|
||||||
|
);
|
||||||
|
|
||||||
// If this code starts with CSI, you can bet that the
|
// If this code starts with CSI, you can bet that the
|
||||||
// terminal uses 8-bit codes.
|
// terminal uses 8-bit codes.
|
||||||
|
@@ -754,6 +754,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 */
|
||||||
|
/**/
|
||||||
|
971,
|
||||||
/**/
|
/**/
|
||||||
970,
|
970,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user