summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2023-08-23 20:37:42 +0100
committerThomas Adam <thomas@xteddy.org>2023-08-23 20:37:42 +0100
commit70ecf17f857837d399a2cb641fa9628a12615cb3 (patch)
tree64bcbb5aebd4fce05e4488e0aebc9bcdcb4b4243 /input.c
parent071849f82f64d686a0d5eb93e0abb751056476ae (diff)
parent71d453f169ffac345db3e4c82f4409fc41091002 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'input.c')
-rw-r--r--input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.c b/input.c
index 46f8660b..65304d24 100644
--- a/input.c
+++ b/input.c
@@ -2256,9 +2256,9 @@ input_dcs_dispatch(struct input_ctx *ictx)
if (wp == NULL)
return (0);
- if (ictx->flags & INPUT_DISCARD)
+ if (ictx->flags & INPUT_DISCARD) {
+ log_debug("%s: %zu bytes (discard)", __func__, len);
return (0);
-
#ifdef ENABLE_SIXEL
if (buf[0] == 'q') {
si = sixel_parse(buf, len, w->xpixel, w->ypixel);