mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.0209: build error with small features
Problem: Build error with small features. Solution: Add #ifdef.
This commit is contained in:
parent
9e7e28fc4c
commit
677a39fdf6
@ -2993,7 +2993,11 @@ win_line(
|
|||||||
// Don't use "extra_attr" until n_attr_skip is zero.
|
// Don't use "extra_attr" until n_attr_skip is zero.
|
||||||
if (n_attr_skip == 0 && n_attr > 0
|
if (n_attr_skip == 0 && n_attr > 0
|
||||||
&& wlv.draw_state == WL_LINE
|
&& wlv.draw_state == WL_LINE
|
||||||
&& (!attr_pri || (text_prop_flags & PT_FLAG_OVERRIDE)))
|
&& (!attr_pri
|
||||||
|
#ifdef FEAT_PROP_POPUP
|
||||||
|
|| (text_prop_flags & PT_FLAG_OVERRIDE)
|
||||||
|
#endif
|
||||||
|
))
|
||||||
{
|
{
|
||||||
#ifdef LINE_ATTR
|
#ifdef LINE_ATTR
|
||||||
if (line_attr)
|
if (line_attr)
|
||||||
|
@ -735,6 +735,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 */
|
||||||
|
/**/
|
||||||
|
209,
|
||||||
/**/
|
/**/
|
||||||
208,
|
208,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user