Rename variable toggledidx to markidx

This commit is contained in:
Bert Münnich
2018-06-09 11:57:42 +02:00
parent 1e5cc7e382
commit a1165df878
2 changed files with 9 additions and 9 deletions

6
main.c
View File

@ -57,7 +57,7 @@ fileinfo_t *files;
int filecnt, fileidx;
int alternate;
int markcnt;
int toggledidx;
int markidx;
int prefix;
bool extprefix;
@ -159,8 +159,8 @@ void remove_file(int n, bool manual)
fileidx--;
if (n < alternate)
alternate--;
if (n < toggledidx)
toggledidx--;
if (n < markidx)
markidx--;
}
void set_timeout(timeout_f handler, int time, bool overwrite)