changeset 5483:9502d1caf90b v7.4.091

updated for version 7.4.091 Problem: Missing semicolon. Solution: Add the semicolon.
author Bram Moolenaar <bram@vim.org>
date Tue, 12 Nov 2013 18:09:29 +0100
parents 168211560344
children 34a3b852ec05
files src/fileio.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)
     {
--- 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,