Spacing after keywords (for)

This commit is contained in:
Benny Baumann
2020-10-31 20:55:36 +01:00
parent 374edb9ed5
commit adf797c295
8 changed files with 15 additions and 15 deletions

View File

@ -114,7 +114,7 @@ static bool IncMode_find(IncMode* mode, Panel* panel, IncMode_GetPanelValue getP
int size = Panel_size(panel);
int here = Panel_getSelectedIndex(panel);
int i = here;
for(;;) {
for (;;) {
i+=step;
if (i == size) i = 0;
if (i == -1) i = size - 1;