From: a bellenir Date: Mon, 4 Jan 2016 21:27:18 +0000 (-0500) Subject: spaces instead of tabs X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=9005b8df8390fbc5e901c89a0851410474effd88;p=projs%2Ftide.git spaces instead of tabs --- 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; } }