summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-09-07 13:50:37 +0000
committerBram Moolenaar <Bram@vim.org>2008-09-07 13:50:37 +0000
commite511f29adbab8eca7a33c3326fb7b4c57451da1b (patch)
treedcae32895bcd8b55659e5b44134375cde5cc3e35
parenta85fb757a19ddc9fa3a3dbc786b388294d9b7eee (diff)
downloadvim-git-7.2.012.tar.gz
updated for version 7.2-012v7.2.012
-rw-r--r--src/ex_cmds2.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index f86e6ee6a..ed3c45f6c 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -3145,8 +3145,8 @@ do_source(fname, check_other, is_vimrc)
verbose_leave();
}
#ifdef STARTUPTIME
- vim_snprintf(IObuff, IOSIZE, "sourcing %s", fname);
- time_msg(IObuff, &tv_start);
+ vim_snprintf((char *)IObuff, IOSIZE, "sourcing %s", fname);
+ time_msg((char *)IObuff, &tv_start);
time_pop(&tv_rel);
#endif
diff --git a/src/version.c b/src/version.c
index cd13eb2c0..2b924604b 100644
--- 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 */
/**/
+ 12,
+/**/
11,
/**/
10,