# HG changeset patch # User Christian Brabandt # Date 1453750205 -3600 # Node ID 39be49fd70d9b871d6a70beb1389d70bbf446367 # Parent 2a21a441450fd873968c0c5853070dde5be755bc commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d Author: Bram Moolenaar Date: Mon Jan 25 20:15:45 2016 +0100 patch 7.4.1177 Problem: The +channel feature is not in :version output. (Tony Mechelynck) Solution: Add the feature string. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -106,6 +106,11 @@ static char *(features[]) = #else "-byte_offset", #endif +#ifdef FEAT_CHANNEL + "+channel", +#else + "-channel", +#endif #ifdef FEAT_CINDENT "+cindent", #else @@ -742,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1177, +/**/ 1176, /**/ 1175,