From 5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d Mon Sep 17 00:00:00 2001 From: Bram Moolenaar <Bram@vim.org> Date: Mon, 25 Jan 2016 20:15:45 +0100 Subject: [PATCH] patch 7.4.1177 Problem: The +channel feature is not in :version output. (Tony Mechelynck) Solution: Add the feature string. --- src/version.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/version.c b/src/version.c index 56d6d812d..298372e83 100644 --- 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 @@ -741,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1177, /**/ 1176, /**/ -- 2.40.0