# HG changeset patch # User Christian Brabandt # Date 1520354705 -3600 # Node ID 4db074f4394cfd0733b4100c9aaf190b73a0caa5 # Parent afedbf386213d3481fce85e9ec65af4d53259d34 patch 8.0.1583: using C99 comment commit https://github.com/vim/vim/commit/fc6f16b57ce988cea6d07b5f2d5054711aad6bbf Author: Bram Moolenaar Date: Tue Mar 6 17:43:22 2018 +0100 patch 8.0.1583: using C99 comment Problem: Using C99 comment. Solution: Use old style comment. (Kazunobu Kuriyama) diff --git a/src/quickfix.c b/src/quickfix.c --- a/src/quickfix.c +++ b/src/quickfix.c @@ -4099,7 +4099,7 @@ ex_cfile(exarg_T *eap) win_T *wp = NULL; qf_info_T *qi = &ql_info; char_u *au_name = NULL; - int save_qfid = 0; // init for gcc + int save_qfid = 0; /* init for gcc */ int res; switch (eap->cmdidx) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -767,6 +767,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1583, +/**/ 1582, /**/ 1581,