The branch, master has been updated via 3e270af17a1918df1d3c3f40fc5bab336bc93c1b (commit) from 10db7ec51b484d59fa039e64e85ea463553bf1ad (commit)
- Log ----------------------------------------------------------------- commit 3e270af17a1918df1d3c3f40fc5bab336bc93c1b Author: Nicholas Marriott <nicholas.marri...@gmail.com> Commit: Nicholas Marriott <nicholas.marri...@gmail.com> Don't omit half the default table (!= not ==). --- tty-keys.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tty-keys.c b/tty-keys.c index b29f647..bcb582e 100644 --- a/tty-keys.c +++ b/tty-keys.c @@ -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); } ----------------------------------------------------------------------- Summary of changes: tty-keys.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- tmux ------------------------------------------------------------------------------ The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials, tech docs, whitepapers, evaluation guides, and opinion stories. Check out the most recent posts - join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ tmux-cvs mailing list tmux-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tmux-cvs