From 9005b8df8390fbc5e901c89a0851410474effd88 Mon Sep 17 00:00:00 2001 From: a bellenir Date: Mon, 4 Jan 2016 16:27:18 -0500 Subject: [PATCH] spaces instead of tabs --- source/main.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/source/main.c b/source/main.c index 9f1ca3a..20e7100 100644 --- a/source/main.c +++ b/source/main.c @@ -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; } } -- 2.54.0