1
0
forked from aniani/vim

patch 8.2.0574: ipv6 feature not shown in :version output

Problem:    Ipv6 feature not shown in :version output.
Solution:   Add ipv6 in :version output. (Ozaki Kiichi, closes #5924)
This commit is contained in:
Bram Moolenaar
2020-04-13 19:04:21 +02:00
parent 278e83863b
commit 352f554b85
2 changed files with 9 additions and 1 deletions

View File

@@ -296,6 +296,11 @@ static char *(features[]) =
"-iconv",
#endif
"+insert_expand",
#ifdef FEAT_IPV6
"+ipv6",
#else
"-ipv6",
#endif
#ifdef FEAT_JOB_CHANNEL
"+job",
#else
@@ -741,6 +746,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
574,
/**/
573,
/**/