# HG changeset patch # User Christian Brabandt # Date 1526903105 -7200 # Node ID 68290d296dc9d06fced603e122b086f76f9692bb # Parent 381f04622c20532c9460e5753793fbc696656365 patch 8.1.0012: misplaced #endif commit https://github.com/vim/vim/commit/1f131aee0ed4383009c0a67cc15581cc4c0dcad7 Author: Bram Moolenaar Date: Mon May 21 13:39:40 2018 +0200 patch 8.1.0012: misplaced #endif Problem: Misplaced #endif. Solution: Move the #endif to after the expression. (David Binderman) diff --git a/src/fileio.c b/src/fileio.c --- a/src/fileio.c +++ b/src/fileio.c @@ -714,8 +714,8 @@ readfile( && st.st_gid != swap_st.st_gid # ifdef HAVE_FCHOWN && fchown(curbuf->b_ml.ml_mfp->mf_fd, -1, st.st_gid) + == -1 # endif - == -1 ) swap_mode &= 0600; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 12, +/**/ 11, /**/ 10,