mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-04 01:40:21 -05:00
vt: implement C0::FF - processed in the same way as C0::LF
This commit is contained in:
parent
4849a16f37
commit
7f7ab00e11
2 changed files with 3 additions and 0 deletions
2
vt.c
2
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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue