diff src/ui.c @ 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 10f17a228661
children 74b15ed0a259
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);
 }
 
 /*