mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.0.0061
Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott)
This commit is contained in:
@@ -60,7 +60,9 @@ pum_display(
|
|||||||
int above_row;
|
int above_row;
|
||||||
int below_row;
|
int below_row;
|
||||||
int redo_count = 0;
|
int redo_count = 0;
|
||||||
|
#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
|
||||||
win_T *pvwin;
|
win_T *pvwin;
|
||||||
|
#endif
|
||||||
|
|
||||||
redo:
|
redo:
|
||||||
def_width = PUM_DEF_WIDTH;
|
def_width = PUM_DEF_WIDTH;
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
61,
|
||||||
/**/
|
/**/
|
||||||
60,
|
60,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user