diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-12 18:09:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-12 18:09:29 +0100 |
commit | e874744e94e172d33edd91ccb0f5cdf5105b6be3 (patch) | |
tree | 36b8e8ff0bfebdb52e1db30fe1665772f5d6fb9a /src | |
parent | 8f5610df7312023e2da5dc8f885e1b159a57dee2 (diff) | |
download | vim-e874744e94e172d33edd91ccb0f5cdf5105b6be3.zip |
updated for version 7.4.091
Problem: Missing semicolon.
Solution: Add the semicolon.
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 9db984d3f..1d030165a 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 41d07404c..0e9375a30 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, |