From 33c1b198c647703e2b7ce003ecb113a68ee716da Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 23 Jan 2012 20:48:40 +0100 Subject: [PATCH] updated for version 7.3.410 Problem: Compiler error for // comment. (Joachim Schmitz) Solution: Turn into /* comment */. --- src/message.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/message.c b/src/message.c index 95f626c95d..872fadc661 100644 --- a/src/message.c +++ b/src/message.c @@ -333,7 +333,7 @@ trunc_string(s, buf, room, buflen) } else { - buf[e - 1] = NUL; // make sure it is truncated + buf[e - 1] = NUL; /* make sure it is truncated */ } } diff --git a/src/version.c b/src/version.c index 110f14f01e..9294728f77 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 410, /**/ 409, /**/