mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-01 01:40:13 -05:00
vt: always use hex (not octal)
This commit is contained in:
parent
27d00b15c7
commit
df65e29d0d
1 changed files with 2 additions and 2 deletions
4
vt.c
4
vt.c
|
|
@ -898,12 +898,12 @@ action(struct terminal *term, enum action _action, uint8_t c)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case '\016':
|
case '\x0e':
|
||||||
/* SO - shift out */
|
/* SO - shift out */
|
||||||
term->selected_charset = 1; /* G1 */
|
term->selected_charset = 1; /* G1 */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '\017':
|
case '\x0f':
|
||||||
/* SI - shift in */
|
/* SI - shift in */
|
||||||
term->selected_charset = 0; /* G0 */
|
term->selected_charset = 0; /* G0 */
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue