diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-29 23:02:25 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-29 23:02:25 +0100 |
commit | 414208aab1d7a6ed346a2fb5249d022be5617260 (patch) | |
tree | f4b6a65e55c66843e6ab274dda1d352cb866b44e /tty-term.c | |
parent | 95d68fcba137cc140d90b65de6bde1f502d3cbc1 (diff) | |
parent | 7dced376737ef685e09fd5a49161ca2bf423e91b (diff) | |
download | rtmux-414208aab1d7a6ed346a2fb5249d022be5617260.tar.gz rtmux-414208aab1d7a6ed346a2fb5249d022be5617260.tar.bz2 rtmux-414208aab1d7a6ed346a2fb5249d022be5617260.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -691,7 +691,7 @@ tty_term_describe(struct tty_term *term, enum tty_code_code code) break; case TTYCODE_STRING: strnvis(out, term->codes[code].value.string, sizeof out, - VIS_OCTAL|VIS_TAB|VIS_NL); + VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL); xsnprintf(s, sizeof s, "%4u: %s: (string) %s", code, tty_term_codes[code].name, out); |