# HG changeset patch # User Christian Brabandt # Date 1478294104 -3600 # Node ID 4d98f501d1c55caeaee16479d6d2e14da8c8e66a # Parent 443896d0af0200f40ac52cd7f5483453379a8566 commit https://github.com/vim/vim/commit/aab3383e70456f054fe9d0963fe3eb45994aa5e7 Author: Bram Moolenaar Date: Fri Nov 4 22:08:29 2016 +0100 patch 8.0.0061 Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott) diff --git a/src/popupmnu.c b/src/popupmnu.c --- a/src/popupmnu.c +++ b/src/popupmnu.c @@ -60,7 +60,9 @@ pum_display( int above_row; int below_row; int redo_count = 0; +#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) win_T *pvwin; +#endif redo: def_width = PUM_DEF_WIDTH; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 61, +/**/ 60, /**/ 59,