# HG changeset patch # User vimboss # Date 1245855012 0 # Node ID 70a5e723eea2c648aa82f7c8f28a2a5dd5429132 # Parent a7c4842a0be340d06de659940f9396f969bdae77 updated for version 7.2-213 diff --git a/src/netbeans.c b/src/netbeans.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 213, +/**/ 212, /**/ 211,