diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-11-04 22:08:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-11-04 22:08:29 +0100 |
commit | aab3383e70456f054fe9d0963fe3eb45994aa5e7 (patch) | |
tree | 5409c989a767af3c14771d0a618b8818e267ed5f /src/popupmnu.c | |
parent | 426f3754223c8ff8a1bc51d6ba1eba11e8982ebc (diff) | |
download | vim-git-aab3383e70456f054fe9d0963fe3eb45994aa5e7.tar.gz |
patch 8.0.0061v8.0.0061
Problem: Compiler warning for unused variable.
Solution: Add #ifdef. (John Marriott)
Diffstat (limited to 'src/popupmnu.c')
-rw-r--r-- | src/popupmnu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/popupmnu.c b/src/popupmnu.c index 6a75686ff..19d215b9f 100644 --- 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; |