diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-11-11 08:37:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-11-11 08:37:56 +0000 |
commit | a1945d88e9e01807a8e8100b0fe7711a33bbdfc2 (patch) | |
tree | 3c09cd76714c60a7774e7aeb39a2ee97592982bd /usr.bin/tmux/input.c | |
parent | 2ca22c1e265d172fa0918caea3558d6a747388a3 (diff) |
Parse primary device attributes as well as secondary and add a SIXEL
flag (not used yet), from Anindya Mukherjee.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 6d2974c383f..fd3ed0744b9 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.211 2022/10/28 13:00:02 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.212 2022/11/11 08:37:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1345,8 +1345,8 @@ input_csi_dispatch(struct input_ctx *ictx) if (ictx->flags & INPUT_DISCARD) return (0); - log_debug("%s: '%c' \"%s\" \"%s\"", - __func__, ictx->ch, ictx->interm_buf, ictx->param_buf); + log_debug("%s: '%c' \"%s\" \"%s\"", __func__, ictx->ch, + ictx->interm_buf, ictx->param_buf); if (input_split(ictx) != 0) return (0); |