diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-16 13:29:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-16 13:29:40 +0000 |
commit | 3e270af17a1918df1d3c3f40fc5bab336bc93c1b (patch) | |
tree | 8ebea3f5b5eccfb2198dc7b6dc2d33266a67de74 | |
parent | 10db7ec51b484d59fa039e64e85ea463553bf1ad (diff) | |
download | rtmux-3e270af17a1918df1d3c3f40fc5bab336bc93c1b.tar.gz rtmux-3e270af17a1918df1d3c3f40fc5bab336bc93c1b.tar.bz2 rtmux-3e270af17a1918df1d3c3f40fc5bab336bc93c1b.zip |
Don't omit half the default table (!= not ==).
-rw-r--r-- | tty-keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -360,7 +360,7 @@ tty_keys_build(struct tty *tty) tdkc = &tty_default_code_keys[i]; s = tty_term_string(tty->term, tdkc->code); - if (*s == '\0') + if (*s != '\0') tty_keys_add(tty, s, tdkc->key); } |