forked from aniani/vim
patch 8.2.3752: build error when using Photon GUI
Problem: Build error when using Photon GUI. Solution: Adjust #ifdef. (closes #9288)
This commit is contained in:
@@ -150,18 +150,18 @@ get_beval_info(
|
|||||||
int row = mouse_row;
|
int row = mouse_row;
|
||||||
int col = mouse_col;
|
int col = mouse_col;
|
||||||
|
|
||||||
# ifdef FEAT_GUI
|
# ifdef FEAT_BEVAL_GUI
|
||||||
if (gui.in_use)
|
if (gui.in_use)
|
||||||
{
|
{
|
||||||
row = Y_2_ROW(beval->y);
|
row = Y_2_ROW(beval->y);
|
||||||
col = X_2_COL(beval->x);
|
col = X_2_COL(beval->x);
|
||||||
}
|
}
|
||||||
#endif
|
# endif
|
||||||
if (find_word_under_cursor(row, col, getword,
|
if (find_word_under_cursor(row, col, getword,
|
||||||
FIND_IDENT + FIND_STRING + FIND_EVAL,
|
FIND_IDENT + FIND_STRING + FIND_EVAL,
|
||||||
winp, lnump, textp, colp, NULL) == OK)
|
winp, lnump, textp, colp, NULL) == OK)
|
||||||
{
|
{
|
||||||
#ifdef FEAT_VARTABS
|
# ifdef FEAT_VARTABS
|
||||||
vim_free(beval->vts);
|
vim_free(beval->vts);
|
||||||
beval->vts = tabstop_copy((*winp)->w_buffer->b_p_vts_array);
|
beval->vts = tabstop_copy((*winp)->w_buffer->b_p_vts_array);
|
||||||
if ((*winp)->w_buffer->b_p_vts_array != NULL && beval->vts == NULL)
|
if ((*winp)->w_buffer->b_p_vts_array != NULL && beval->vts == NULL)
|
||||||
@@ -170,7 +170,7 @@ get_beval_info(
|
|||||||
vim_free(*textp);
|
vim_free(*textp);
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
#endif
|
# endif
|
||||||
beval->ts = (*winp)->w_buffer->b_p_ts;
|
beval->ts = (*winp)->w_buffer->b_p_ts;
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
@@ -753,6 +753,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 */
|
||||||
|
/**/
|
||||||
|
3752,
|
||||||
/**/
|
/**/
|
||||||
3751,
|
3751,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user