# HG changeset patch # User Bram Moolenaar # Date 1384276169 -3600 # Node ID 9502d1caf90bf56f0125c99b7d17ba70944ebd85 # Parent 1682115603445172b333dfeefe2710dcae6f5676 updated for version 7.4.091 Problem: Missing semicolon. Solution: Add the semicolon. diff --git a/src/fileio.c b/src/fileio.c --- 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 --- 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,