Mercurial > vim
changeset 15947:4aaf68cbed32 v8.1.0979
patch 8.1.0979: compiler warning for unused functions
commit https://github.com/vim/vim/commit/1fa8fdd611b4b69d52baad68e9a7200e09258131
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Feb 25 05:41:15 2019 +0100
patch 8.1.0979: compiler warning for unused functions
Problem: Compiler warning for unused functions. (Yasuhiro Matsumoto)
Solution: Adjust #ifdef.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 25 Feb 2019 05:45:04 +0100 |
parents | 0a6b08858dda |
children | 1b55571e861e |
files | src/screen.c src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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.