diff options
author | 2009-11-13 19:53:28 +0000 | |
---|---|---|
committer | 2009-11-13 19:53:28 +0000 | |
commit | 0e9de5d4b318503e468d9cb019fbe84d03290ff0 (patch) | |
tree | fb80958bd389f443b9e6717b7ab267cb944ce7db /usr.bin/tmux/cmd-bind-key.c | |
parent | 1.8 broke things, back it out, correct fix coming from pjanzen (diff) | |
download | wireguard-openbsd-0e9de5d4b318503e468d9cb019fbe84d03290ff0.tar.xz wireguard-openbsd-0e9de5d4b318503e468d9cb019fbe84d03290ff0.zip |
Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the
command entry structs and a couple of functions to check/set the flags.
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 4b075c19e34..f716d198162 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.5 2009/07/28 17:05:10 nicm Exp $ */ +/* $OpenBSD: cmd-bind-key.c,v 1.6 2009/11/13 19:53:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -46,7 +46,7 @@ struct cmd_bind_key_data { const struct cmd_entry cmd_bind_key_entry = { "bind-key", "bind", "[-cnr] [-t key-table] key command [arguments]", - 0, 0, + 0, "", NULL, cmd_bind_key_parse, cmd_bind_key_exec, |