diff --git a/edit.lua b/edit.lua index b9bd9c4..45588df 100644 --- a/edit.lua +++ b/edit.lua @@ -142,14 +142,14 @@ end function edit.put_cursor_on_next_text_line(State) while true do - if State.cursor1.line >= #State.lines then - break - end - if State.lines[State.cursor1.line].mode == 'text' then - break - end - State.cursor1.line = State.cursor1.line+1 - State.cursor1.pos = 1 + if State.cursor1.line >= #State.lines then + break + end + if State.lines[State.cursor1.line].mode == 'text' then + break + end + State.cursor1.line = State.cursor1.line+1 + State.cursor1.pos = 1 end end diff --git a/source_edit.lua b/source_edit.lua index d2cd7d9..310853a 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -144,14 +144,14 @@ end function edit.put_cursor_on_next_text_line(State) while true do - if State.cursor1.line >= #State.lines then - break - end - if State.lines[State.cursor1.line].mode == 'text' then - break - end - State.cursor1.line = State.cursor1.line+1 - State.cursor1.pos = 1 + if State.cursor1.line >= #State.lines then + break + end + if State.lines[State.cursor1.line].mode == 'text' then + break + end + State.cursor1.line = State.cursor1.line+1 + State.cursor1.pos = 1 end end