mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.0.0366: build fails with tiny features
Problem: Build fails with tiny features. Solution: Add #ifdef.
This commit is contained in:
@@ -885,8 +885,10 @@ init_changedtick(buf_T *buf)
|
|||||||
di->di_tv.v_lock = VAR_FIXED;
|
di->di_tv.v_lock = VAR_FIXED;
|
||||||
di->di_tv.vval.v_number = 0;
|
di->di_tv.vval.v_number = 0;
|
||||||
|
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
STRCPY(buf->b_ct_di.di_key, "changedtick");
|
STRCPY(buf->b_ct_di.di_key, "changedtick");
|
||||||
(void)dict_add(buf->b_vars, di);
|
(void)dict_add(buf->b_vars, di);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -764,6 +764,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 */
|
||||||
|
/**/
|
||||||
|
366,
|
||||||
/**/
|
/**/
|
||||||
365,
|
365,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user