mirror of
https://github.com/tmux/tmux.git
synced 2025-01-05 15:28:50 +00:00
Get == and != the right way round.
This commit is contained in:
parent
0b828b91a5
commit
7317a0865c
2
input.c
2
input.c
@ -1610,7 +1610,7 @@ input_csi_dispatch(struct input_ctx *ictx)
|
|||||||
break;
|
break;
|
||||||
case INPUT_CSI_XDA:
|
case INPUT_CSI_XDA:
|
||||||
n = input_get(ictx, 0, 0, 0);
|
n = input_get(ictx, 0, 0, 0);
|
||||||
if (n != 0)
|
if (n == 0)
|
||||||
input_reply(ictx, "\033P>|tmux %s\033\\", getversion());
|
input_reply(ictx, "\033P>|tmux %s\033\\", getversion());
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user