# HG changeset patch # User Christian Brabandt # Date 1456265704 -3600 # Node ID 6d221d623c8e88d03c1edafb2dc885f3ac98f4ec # Parent 5e85d764208594b5df004e1eceaf35b3616a7d4d commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30 Author: Bram Moolenaar Date: Tue Feb 23 23:04:36 2016 +0100 patch 7.4.1411 Problem: Compiler warning for indent. (Ajit Thakkar) Solution: Indent normally. diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -711,7 +711,7 @@ clip_compare_pos( if (row1 < row2) return(-1); if (col1 > col2) return(1); if (col1 < col2) return(-1); - return(0); + return(0); } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1411, +/**/ 1410, /**/ 1409,