Skip to content

Commit 5aec481

Browse files
committed
patch 7.4.1177
Problem: The +channel feature is not in :version output. (Tony Mechelynck) Solution: Add the feature string.
1 parent 1d63539 commit 5aec481

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/version.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ static char *(features[]) =
106106
#else
107107
"-byte_offset",
108108
#endif
109+
#ifdef FEAT_CHANNEL
110+
"+channel",
111+
#else
112+
"-channel",
113+
#endif
109114
#ifdef FEAT_CINDENT
110115
"+cindent",
111116
#else
@@ -741,6 +746,8 @@ static char *(features[]) =
741746

742747
static int included_patches[] =
743748
{ /* Add new patch number below this line */
749+
/**/
750+
1177,
744751
/**/
745752
1176,
746753
/**/

0 commit comments

Comments
 (0)