diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-25 20:15:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-25 20:15:45 +0100 |
commit | 5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d (patch) | |
tree | 2b7da9e025f9f942d7dc214be6b2e02880b828e6 /src | |
parent | 1d63539cc72c5be7ad875d2d48a34c4f74c096ab (diff) | |
download | vim-git-5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d.tar.gz |
patch 7.4.1177v7.4.1177
Problem: The +channel feature is not in :version output. (Tony Mechelynck)
Solution: Add the feature string.
Diffstat (limited to 'src')
-rw-r--r-- | src/version.c | 7 |
1 files changed, 7 insertions, 0 deletions
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 @@ -742,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1177, +/**/ 1176, /**/ 1175, |