vt: implement C0::FF - processed in the same way as C0::LF

This commit is contained in:
Daniel Eklöf 2020-07-14 09:18:52 +02:00
parent 4849a16f37
commit 7f7ab00e11
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 3 additions and 0 deletions

View file

@ -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

2
vt.c
View file

@ -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;