summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-06 17:43:22 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-06 17:43:22 +0100
commitfc6f16b57ce988cea6d07b5f2d5054711aad6bbf (patch)
tree616ce940b1c2072ebb95a8c2fbed129301a29bcb
parent157d813be41c122e210b0eb1cd1e862fbddbf665 (diff)
downloadvim-git-fc6f16b57ce988cea6d07b5f2d5054711aad6bbf.tar.gz
patch 8.0.1583: using C99 commentv8.0.1583
Problem: Using C99 comment. Solution: Use old style comment. (Kazunobu Kuriyama)
-rw-r--r--src/quickfix.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index 7ee386dbb..e8fe59b33 100644
--- 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
index ff708a088..40b161a14 100644
--- 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,