mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
patch 8.2.4961: build error with a certain combination of features
Problem: Build error with a certain combination of features. Solution: Adjust #if. (John Marriott)
This commit is contained in:
@ -3361,7 +3361,8 @@ ml_append_flags(
|
||||
}
|
||||
|
||||
|
||||
#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
|
||||
#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(FEAT_PROP_POPUP) \
|
||||
|| defined(PROTO)
|
||||
/*
|
||||
* Like ml_append() but for an arbitrary buffer. The buffer must already have
|
||||
* a memline.
|
||||
|
@ -746,6 +746,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
4961,
|
||||
/**/
|
||||
4960,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user