summaryrefslogtreecommitdiffstats
path: root/cmd-join-pane.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2015-12-14 01:30:15 +0000
committerThomas Adam <thomas@xteddy.org>2015-12-14 01:30:15 +0000
commitbc6137f9e4244c2fde4e37ef47faebb942dae5f0 (patch)
treee216b6bf0df95898f7e04f6d8b5c7109261d048b /cmd-join-pane.c
parent5caec3020d32596f3ecf3dea68639da18690992d (diff)
parenta585a1b81a9122c2f7d7083304a4eb47d4e1c7ec (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-join-pane.c')
-rw-r--r--cmd-join-pane.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/cmd-join-pane.c b/cmd-join-pane.c
index 7b828fe6..e8ad3bd0 100644
--- a/cmd-join-pane.c
+++ b/cmd-join-pane.c
@@ -39,7 +39,10 @@ const struct cmd_entry cmd_join_pane_entry = {
.args = { "bdhvp:l:s:t:", 0, 0 },
.usage = "[-bdhv] [-p percentage|-l size] " CMD_SRCDST_PANE_USAGE,
- .flags = CMD_PANE_MARKED_S|CMD_PANE_T,
+ .sflag = CMD_PANE_MARKED,
+ .tflag = CMD_PANE,
+
+ .flags = 0,
.exec = cmd_join_pane_exec
};
@@ -50,7 +53,10 @@ const struct cmd_entry cmd_move_pane_entry = {
.args = { "bdhvp:l:s:t:", 0, 0 },
.usage = "[-bdhv] [-p percentage|-l size] " CMD_SRCDST_PANE_USAGE,
- .flags = CMD_PANE_S|CMD_PANE_T,
+ .sflag = CMD_PANE,
+ .tflag = CMD_PANE,
+
+ .flags = 0,
.exec = cmd_join_pane_exec
};