From 7317a0865cd5bcdff065be83e2105336f0038eae Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 15 May 2020 17:49:58 +0100 Subject: Get == and != the right way round. --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.c b/input.c index ffa22995..57726233 100644 --- a/input.c +++ b/input.c @@ -1610,7 +1610,7 @@ input_csi_dispatch(struct input_ctx *ictx) break; case INPUT_CSI_XDA: n = input_get(ictx, 0, 0, 0); - if (n != 0) + if (n == 0) input_reply(ictx, "\033P>|tmux %s\033\\", getversion()); break; -- cgit