Consistency

This commit is contained in:
Ashish Kumar Yadav 2021-12-12 01:57:10 +05:30
parent 4160076bd0
commit 5296dee5e2
1 changed files with 1 additions and 1 deletions

View File

@ -2495,7 +2495,7 @@ twritetab(void)
/* possibly best, yet not perfect, hack to not "writetab"
* when tab was intended only for cursor movement */
for (++x; x < term.col && !term.tabs[x]; x++)
while (++x < term.col && !term.tabs[x])
if (term.line[y][x].state != GLYPH_EMPTY) {
while (++x < term.col && !term.tabs[x]);
goto end;