# HG changeset patch # User Bram Moolenaar # Date 1630346405 -7200 # Node ID e9687a2f6fb3fce816a51d943054f0607a705077 # Parent cc125f72536330f61b09bb004e30c0de28161af6 patch 8.2.3387: compiler warning for non-static function Commit: https://github.com/vim/vim/commit/de05ae71589f46c5d27642c33fe5eb21b22aaf5d Author: Dominique Pelle Date: Mon Aug 30 19:57:34 2021 +0200 patch 8.2.3387: compiler warning for non-static function Problem: Compiler warning for non-static function. Solution: Make the function static. (Dominique Pell?, closes https://github.com/vim/vim/issues/8816) diff --git a/src/strings.c b/src/strings.c --- a/src/strings.c +++ b/src/strings.c @@ -127,7 +127,7 @@ csh_like_shell(void) /* * Return TRUE when 'shell' has "fish" in the tail. */ - int + static int fish_like_shell(void) { return (strstr((char *)gettail(p_sh), "fish") != NULL); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3387, +/**/ 3386, /**/ 3385,