mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -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;
|
||||
}
|
||||
|
||||
case '\016':
|
||||
case '\x0e':
|
||||
/* SO - shift out */
|
||||
term->selected_charset = 1; /* G1 */
|
||||
break;
|
||||
|
||||
case '\017':
|
||||
case '\x0f':
|
||||
/* SI - shift in */
|
||||
term->selected_charset = 0; /* G0 */
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue