summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-display-panes.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-11-13 19:53:28 +0000
committernicm <nicm@openbsd.org>2009-11-13 19:53:28 +0000
commit0e9de5d4b318503e468d9cb019fbe84d03290ff0 (patch)
treefb80958bd389f443b9e6717b7ab267cb944ce7db /usr.bin/tmux/cmd-display-panes.c
parent1.8 broke things, back it out, correct fix coming from pjanzen (diff)
downloadwireguard-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-display-panes.c')
-rw-r--r--usr.bin/tmux/cmd-display-panes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-display-panes.c b/usr.bin/tmux/cmd-display-panes.c
index d95282529f7..4c751dc14ce 100644
--- a/usr.bin/tmux/cmd-display-panes.c
+++ b/usr.bin/tmux/cmd-display-panes.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-display-panes.c,v 1.1 2009/08/31 20:46:19 nicm Exp $ */
+/* $OpenBSD: cmd-display-panes.c,v 1.2 2009/11/13 19:53:29 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -29,7 +29,7 @@ int cmd_display_panes_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_display_panes_entry = {
"display-panes", "displayp",
CMD_TARGET_CLIENT_USAGE,
- 0, 0,
+ 0, "",
cmd_target_init,
cmd_target_parse,
cmd_display_panes_exec,