From: Bram Moolenaar Date: Sat, 5 Jan 2008 12:59:22 +0000 (+0000) Subject: updated for version 7.1-206 X-Git-Tag: v7.1.206 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=589e43a19e3da6a9c2785b87027e880a2097e448;p=thirdparty%2Fvim.git updated for version 7.1-206 --- diff --git a/src/version.c b/src/version.c index c9508b969a..1acc8fa2dd 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 206, /**/ 205, /**/ @@ -1587,9 +1589,9 @@ do_intro_line(row, mesg, add_version, attr) if (*mesg == ' ') { - vim_strncpy(modby, _("Modified by "), MODBY_LEN - 1); + vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); l = STRLEN(modby); - vim_strncpy(modby + l, MODIFIED_BY, MODBY_LEN - l - 1); + vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); mesg = modby; } #endif