diff options
author | nicm <nicm> | 2020-04-20 13:38:48 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-20 13:38:48 +0000 |
commit | 135bb1edeeab3faae8001100aa7c173be9aa91e1 (patch) | |
tree | 893c6ff71e5d72a2df4ad59530c198848cbb0cc6 /tty-term.c | |
parent | c91b4b2e142b5b3fc9ca88afec6bfa9b2711e01b (diff) | |
download | rtmux-135bb1edeeab3faae8001100aa7c173be9aa91e1.tar.gz rtmux-135bb1edeeab3faae8001100aa7c173be9aa91e1.tar.bz2 rtmux-135bb1edeeab3faae8001100aa7c173be9aa91e1.zip |
Change the Sync capability to be a string instead of a flag.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -259,7 +259,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_SMUL] = { TTYCODE_STRING, "smul" }, [TTYC_SMXX] = { TTYCODE_STRING, "smxx" }, [TTYC_SS] = { TTYCODE_STRING, "Ss" }, - [TTYC_SYNC] = { TTYCODE_FLAG, "Sync" }, + [TTYC_SYNC] = { TTYCODE_STRING, "Sync" }, [TTYC_TC] = { TTYCODE_FLAG, "Tc" }, [TTYC_TSL] = { TTYCODE_STRING, "tsl" }, [TTYC_U8] = { TTYCODE_NUMBER, "U8" }, |