diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-15 17:49:58 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-15 17:49:58 +0100 |
commit | 7317a0865cd5bcdff065be83e2105336f0038eae (patch) | |
tree | 0f6068a507b2c314fe413d25a19ec964c154fe07 | |
parent | 0b828b91a5f9bdf8d62e4352a842ec98a32b0b92 (diff) | |
download | rtmux-7317a0865cd5bcdff065be83e2105336f0038eae.tar.gz rtmux-7317a0865cd5bcdff065be83e2105336f0038eae.tar.bz2 rtmux-7317a0865cd5bcdff065be83e2105336f0038eae.zip |
Get == and != the right way round.
-rw-r--r-- | input.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |