Get == and != the right way round.

pull/2219/head
Nicholas Marriott 2020-05-15 17:49:58 +01:00
parent 0b828b91a5
commit 7317a0865c
1 changed files with 1 additions and 1 deletions

View File

@ -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;