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-command-prompt.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-command-prompt.c')
-rw-r--r-- | usr.bin/tmux/cmd-command-prompt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-command-prompt.c b/usr.bin/tmux/cmd-command-prompt.c index dc4e8e4c2a9..ca3aa567e27 100644 --- a/usr.bin/tmux/cmd-command-prompt.c +++ b/usr.bin/tmux/cmd-command-prompt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-command-prompt.c,v 1.11 2009/09/21 15:32:06 nicm Exp $ */ +/* $OpenBSD: cmd-command-prompt.c,v 1.12 2009/11/13 19:53:29 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -39,7 +39,7 @@ void cmd_command_prompt_cfree(void *); const struct cmd_entry cmd_command_prompt_entry = { "command-prompt", NULL, CMD_TARGET_CLIENT_USAGE " [-p prompts] [template]", - 0, 0, + 0, "", cmd_command_prompt_init, cmd_command_prompt_parse, cmd_command_prompt_exec, |