diff options
author | nicm <nicm> | 2022-12-16 08:22:05 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-12-16 08:22:05 +0000 |
commit | 7cb48fc40b178d0b7bf281dee6799fa0e3745c70 (patch) | |
tree | 4387b69fb5c9ad31d97dae7e1908734b054f39bf | |
parent | 8bd17bff49888d11f9cb19955e778bdcbc4eeea6 (diff) | |
download | rtmux-7cb48fc40b178d0b7bf281dee6799fa0e3745c70.tar.gz rtmux-7cb48fc40b178d0b7bf281dee6799fa0e3745c70.tar.bz2 rtmux-7cb48fc40b178d0b7bf281dee6799fa0e3745c70.zip |
Do not escape tabs in output (iTerm2 needs them). GitHub issue 3414.
-rw-r--r-- | cmd-queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-queue.c b/cmd-queue.c index 8ed3673b..827630d7 100644 --- a/cmd-queue.c +++ b/cmd-queue.c @@ -834,7 +834,7 @@ cmdq_print_data(struct cmdq_item *item, int parse, struct evbuffer *evb) char *sanitized, *msg, *line; if (!parse) { - utf8_stravisx(&msg, data, size, VIS_OCTAL|VIS_CSTYLE|VIS_TAB); + utf8_stravisx(&msg, data, size, VIS_OCTAL|VIS_CSTYLE); log_debug("%s: %s", __func__, msg); } else { msg = EVBUFFER_DATA(evb); |