summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-11-12 18:09:29 +0100
committerBram Moolenaar <bram@vim.org>2013-11-12 18:09:29 +0100
commit1c08d701fc6314f00ad161e154fc4f6d21557697 (patch)
treef2944833b97411155f24b226568f31b67a14dd98
parent000afff95b86459995158d8d62c5d2635ed3516c (diff)
downloadvim-1c08d701fc6314f00ad161e154fc4f6d21557697.tar.gz
updated for version 7.4.091v7.4.091v7-4-091
Problem: Missing semicolon. Solution: Add the semicolon.
-rw-r--r--src/fileio.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 9db984d3..1d030165 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6708,7 +6708,7 @@ vim_rename(from, to)
mch_free_acl(acl);
#endif
#ifdef HAVE_SELINUX
- mch_copy_sec(from, to)
+ mch_copy_sec(from, to);
#endif
if (errmsg != NULL)
{
diff --git a/src/version.c b/src/version.c
index 41d07404..0e9375a3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 91,
+/**/
90,
/**/
89,