diff --git a/src/netbeans.c b/src/netbeans.c index fe3a70c39f..9716329070 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -2586,7 +2586,7 @@ coloncmd(char *cmd, ...) va_list ap; va_start(ap, cmd); - vsprintf(buf, cmd, ap); + vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL); va_end(ap); nbdebug((" COLONCMD %s\n", buf)); diff --git a/src/version.c b/src/version.c index 6043494697..c367c10297 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 213, /**/ 212, /**/