From: Bram Moolenaar Date: Mon, 25 Feb 2019 04:41:15 +0000 (+0100) Subject: patch 8.1.0979: compiler warning for unused functions X-Git-Tag: v8.1.0979 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1fa8fdd611b4b69d52baad68e9a7200e09258131;p=vim patch 8.1.0979: compiler warning for unused functions Problem: Compiler warning for unused functions. (Yasuhiro Matsumoto) Solution: Adjust #ifdef. --- diff --git a/src/screen.c b/src/screen.c index aade363ea..eabf7c186 100644 --- a/src/screen.c +++ b/src/screen.c @@ -832,7 +832,7 @@ update_screen(int type_arg) return OK; } -#if defined(FEAT_SIGNS) || defined(FEAT_GUI) || defined(FEAT_CONCEAL) +#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_GUI) /* * Prepare for updating one or more windows. * Caller must check for "updating_screen" already set to avoid recursiveness. diff --git a/src/version.c b/src/version.c index 850c27dcd..a5a6f7abd 100644 --- a/src/version.c +++ b/src/version.c @@ -779,6 +779,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 979, /**/ 978, /**/