mirror of
https://github.com/tmux/tmux.git
synced 2025-09-17 16:58:18 +00:00
Get == and != the right way round.
This commit is contained in:
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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user