From: Bram Moolenaar Date: Tue, 15 Sep 2015 13:57:29 +0000 (+0200) Subject: patch 7.4.867 X-Git-Tag: v7.4.867 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9534680731ea342c2fed01a812559958923480da;p=vim patch 7.4.867 Problem: Can't build on MS-Windows. (Taro Muraoka) Solution: Adjust #ifdef. --- diff --git a/src/misc2.c b/src/misc2.c index e6a4e747d..407d6b5d5 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -6342,7 +6342,7 @@ parse_queued_messages() /* Process the queued netbeans messages. */ netbeans_parse_messages(); # endif -# ifdef FEAT_CLIENTSERVER +# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11) /* Process the queued clientserver messages. */ server_parse_messages(); # endif diff --git a/src/version.c b/src/version.c index e5038260f..7d61973aa 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 867, /**/ 866, /**/