Fix spelling mistake in vt.c

This commit is contained in:
Craig Barnes 2020-08-16 14:37:27 +01:00
parent 5ab09cdc90
commit 44499bbfe1

2
vt.c
View file

@ -146,7 +146,7 @@ action_execute(struct terminal *term, uint8_t c)
/* According to the specification, HT _should_ cancel LCF. But /* According to the specification, HT _should_ cancel LCF. But
* XTerm, and nearly all other emulators, don't. So we follow * XTerm, and nearly all other emulators, don't. So we follow
* suite */ * suit */
bool lcf = term->grid->cursor.lcf; bool lcf = term->grid->cursor.lcf;
term_cursor_right(term, new_col - term->grid->cursor.point.col); term_cursor_right(term, new_col - term->grid->cursor.point.col);
term->grid->cursor.lcf = lcf; term->grid->cursor.lcf = lcf;