# HG changeset patch # User Bram Moolenaar # Date 1547919007 -3600 # Node ID 1dd0a47f4be2f7f976c1803c1219797ed83aed17 # Parent 9ced002163b2e59d751173dfe4feb5571a9629d2 patch 8.1.0781: build error when using if_xcmdsrv.c commit https://github.com/vim/vim/commit/a502caab8bd396316a6eb5cb821b0a0df55c502a Author: Bram Moolenaar Date: Sat Jan 19 18:23:41 2019 +0100 patch 8.1.0781: build error when using if_xcmdsrv.c Problem: Build error when using if_xcmdsrv.c. Solution: Add missing part of 8.1.0779. diff --git a/src/if_xcmdsrv.c b/src/if_xcmdsrv.c --- a/src/if_xcmdsrv.c +++ b/src/if_xcmdsrv.c @@ -228,7 +228,7 @@ serverRegisterName( { if (res < -1 || i >= 1000) { - MSG_ATTR(_("Unable to register a command server name"), + msg_attr(_("Unable to register a command server name"), HL_ATTR(HLF_W)); return FAIL; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 781, +/**/ 780, /**/ 779,