From 7f7ab00e11b2bc0ec238f86e37d66470f1bdb3de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 14 Jul 2020 09:18:52 +0200 Subject: [PATCH] vt: implement C0::FF - processed in the same way as C0::LF --- CHANGELOG.md | 1 + vt.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a26b957..bd172a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ whether the cursor should blink or not by default. Note that applications can override this. * Multi-seat support +* Implemented `C0::FF` (form feed) ### Changed diff --git a/vt.c b/vt.c index ade6d3a1..cd240ddb 100644 --- a/vt.c +++ b/vt.c @@ -148,8 +148,10 @@ action_execute(struct terminal *term, uint8_t c) case '\n': case '\v': + case '\f': /* LF - \n - line feed */ /* VT - \v - vertical tab */ + /* FF - \f - form feed */ term_linefeed(term); break;