From 44499bbfe13c5e021949ed9cde2d109da17e5bfc Mon Sep 17 00:00:00 2001 From: Craig Barnes Date: Sun, 16 Aug 2020 14:37:27 +0100 Subject: [PATCH] Fix spelling mistake in vt.c --- vt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vt.c b/vt.c index d114b87b..7485fa43 100644 --- a/vt.c +++ b/vt.c @@ -146,7 +146,7 @@ action_execute(struct terminal *term, uint8_t c) /* According to the specification, HT _should_ cancel LCF. But * XTerm, and nearly all other emulators, don't. So we follow - * suite */ + * suit */ bool lcf = term->grid->cursor.lcf; term_cursor_right(term, new_col - term->grid->cursor.point.col); term->grid->cursor.lcf = lcf;