]> git.mdlowis.com Git - projs/tide.git/commitdiff
spaces instead of tabs
authora bellenir <a@bellenir.com>
Mon, 4 Jan 2016 21:27:18 +0000 (16:27 -0500)
committera bellenir <a@bellenir.com>
Mon, 4 Jan 2016 21:27:18 +0000 (16:27 -0500)
source/main.c

index 9f1ca3a21c05bda19261b1bbe011111fa6938d44..20e7100e884ea9b4678a420cb5b5626cba0f83c9 100644 (file)
@@ -193,15 +193,15 @@ static void cursorLeft()
 
 static void cursorDown()
 {
-       if (Loc.line->next) {
-               Curr.y++;
-               if (Curr.y >= Max.y) {
-                       Curr.y = Max.y-1;
-                       if (Curr_File.start->next) {
-                               Curr_File.start = Curr_File.start->next;
-                               ScreenDirty = true;
-                       }
-               }
+    if (Loc.line->next) {
+        Curr.y++;
+        if (Curr.y >= Max.y) {
+            Curr.y = Max.y-1;
+            if (Curr_File.start->next) {
+                Curr_File.start = Curr_File.start->next;
+                ScreenDirty = true;
+            }
+        }
         Loc.line = Loc.line->next;
     }
 }