Skip to content

Commit aab3383

Browse files
committed
patch 8.0.0061
Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott)
1 parent 426f375 commit aab3383

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/popupmnu.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ pum_display(
6060
int above_row;
6161
int below_row;
6262
int redo_count = 0;
63+
#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
6364
win_T *pvwin;
65+
#endif
6466

6567
redo:
6668
def_width = PUM_DEF_WIDTH;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
61,
767769
/**/
768770
60,
769771
/**/

0 commit comments

Comments
 (0)