diff options
author | 2009-12-03 22:50:09 +0000 | |
---|---|---|
committer | 2009-12-03 22:50:09 +0000 | |
commit | 197ec97c8443d9515f7229a99d8cf5b485aa116b (patch) | |
tree | 82c19c9b632b9376bb8ab52e8dcaf1e4525abe49 /usr.bin/tmux/cmd-bind-key.c | |
parent | Stop the IdleHold timer when going to idle state. This makes it a bit (diff) | |
download | wireguard-openbsd-197ec97c8443d9515f7229a99d8cf5b485aa116b.tar.xz wireguard-openbsd-197ec97c8443d9515f7229a99d8cf5b485aa116b.zip |
Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last
time now I've configured emacs to make them displayed in really annoying
colours...
Diffstat (limited to 'usr.bin/tmux/cmd-bind-key.c')
-rw-r--r-- | usr.bin/tmux/cmd-bind-key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-bind-key.c b/usr.bin/tmux/cmd-bind-key.c index f716d198162..e8329555e64 100644 --- a/usr.bin/tmux/cmd-bind-key.c +++ b/usr.bin/tmux/cmd-bind-key.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-bind-key.c,v 1.6 2009/11/13 19:53:28 nicm Exp $ */ +/* $OpenBSD: cmd-bind-key.c,v 1.7 2009/12/03 22:50:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -152,7 +152,7 @@ cmd_bind_key_table(struct cmd *self, struct cmd_ctx *ctx) ctx->error(ctx, "unknown command: %s", data->modecmd); return (-1); } - + mtmp.key = data->key & ~KEYC_PREFIX; mtmp.mode = data->command_key ? 1 : 0; if ((mbind = SPLAY_FIND(mode_key_tree, mtab->tree, &mtmp)) != NULL) { |