summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-26 22:14:09 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-26 22:14:09 +0200
commitd955a0971cb4207e466ad40e78138d71052e1758 (patch)
treed5258839633aa48f2e378ce4fcce0e380aea1ce1 /src
parentac77aec4daea8d73468fcf4690cb4ccab1d807ed (diff)
patch 7.4.2107v7.4.2107
Problem: Misplaced equal sign. Solution: Remove it.
Diffstat (limited to 'src')
-rw-r--r--src/globals.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index 4e5f20d216..7ca3ecd3a0 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1356,7 +1356,7 @@ EXTERN int term_is_xterm INIT(= FALSE); /* xterm-like 'term' */
EXTERN char psepc INIT(= '\\'); /* normal path separator character */
EXTERN char psepcN INIT(= '/'); /* abnormal path separator character */
/* normal path separator string */
-EXTERN char pseps[2] = INIT(= {'\\' COMMA 0});
+EXTERN char pseps[2] INIT(= {'\\' COMMA 0});
#endif
#ifdef FEAT_VIRTUALEDIT
diff --git a/src/version.c b/src/version.c
index cdcb426fa7..26126b8d6e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -759,6 +759,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2107,
+/**/
2106,
/**/
2105,