forked from aniani/vim
patch 8.2.1911: tiny build fails
Problem: Tiny build fails. Solution: Add #ifdef.
This commit is contained in:
@@ -4067,10 +4067,11 @@ ins_complete(int c, int enable_pum)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL)
|
||||||
// Update completion sequence number when needed.
|
// Update completion sequence number when needed.
|
||||||
if (compl_curr_match->cp_number == -1)
|
if (compl_curr_match->cp_number == -1)
|
||||||
ins_compl_update_sequence_numbers();
|
ins_compl_update_sequence_numbers();
|
||||||
|
#endif
|
||||||
// The match should always have a sequence number now, this is
|
// The match should always have a sequence number now, this is
|
||||||
// just a safety check.
|
// just a safety check.
|
||||||
if (compl_curr_match->cp_number != -1)
|
if (compl_curr_match->cp_number != -1)
|
||||||
|
@@ -750,6 +750,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 */
|
||||||
|
/**/
|
||||||
|
1911,
|
||||||
/**/
|
/**/
|
||||||
1910,
|
1910,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user