changeset 8236:6d221d623c8e v7.4.1411

commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 23 23:04:36 2016 +0100 patch 7.4.1411 Problem: Compiler warning for indent. (Ajit Thakkar) Solution: Indent normally.
author Christian Brabandt <cb@256bit.org>
date Tue, 23 Feb 2016 23:15:04 +0100
parents 5e85d7642085
children 037063e140b0
files src/ui.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
 }
 
 /*
--- 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,