summaryrefslogtreecommitdiffstats
path: root/cmd-queue.c
diff options
context:
space:
mode:
authornicm <nicm>2022-12-16 08:22:05 +0000
committernicm <nicm>2022-12-16 08:22:05 +0000
commit7cb48fc40b178d0b7bf281dee6799fa0e3745c70 (patch)
tree4387b69fb5c9ad31d97dae7e1908734b054f39bf /cmd-queue.c
parent8bd17bff49888d11f9cb19955e778bdcbc4eeea6 (diff)
Do not escape tabs in output (iTerm2 needs them). GitHub issue 3414.
Diffstat (limited to 'cmd-queue.c')
-rw-r--r--cmd-queue.c2
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);