From d955a0971cb4207e466ad40e78138d71052e1758 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 26 Jul 2016 22:14:09 +0200 Subject: [PATCH] patch 7.4.2107 Problem: Misplaced equal sign. Solution: Remove it. --- src/globals.h | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/globals.h b/src/globals.h index 4e5f20d21..7ca3ecd3a 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 cdcb426fa..26126b8d6 100644 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2107, /**/ 2106, /**/ -- 2.50.1