summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2023-08-26 20:57:44 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2023-08-26 20:57:44 +0100
commit62f657845ef6229b2f1a78fbceb8f3b2a736227e (patch)
tree27b0bea96f13c371275e67eeae18a5250bda7b53 /input.c
parenta9841a6d1e1e58d3568b39eaeb0f4846a15b8e3d (diff)
Fix merge error, from Jakub Ɓukasiewicz.
Diffstat (limited to 'input.c')
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index 9174be61..b83e64b4 100644
--- a/input.c
+++ b/input.c
@@ -2259,6 +2259,7 @@ input_dcs_dispatch(struct input_ctx *ictx)
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);
@@ -2266,7 +2267,6 @@ input_dcs_dispatch(struct input_ctx *ictx)
screen_write_sixelimage(sctx, si, ictx->cell.cell.bg);
}
#endif
- }
allow_passthrough = options_get_number(wp->options, "allow-passthrough");
if (!allow_passthrough)