aboutsummaryrefslogtreecommitdiff
path: root/cmd-select-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-select-pane.c
parent5caec3020d32596f3ecf3dea68639da18690992d (diff)
parenta585a1b81a9122c2f7d7083304a4eb47d4e1c7ec (diff)
downloadrtmux-bc6137f9e4244c2fde4e37ef47faebb942dae5f0.tar.gz
rtmux-bc6137f9e4244c2fde4e37ef47faebb942dae5f0.tar.bz2
rtmux-bc6137f9e4244c2fde4e37ef47faebb942dae5f0.zip
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-select-pane.c')
-rw-r--r--cmd-select-pane.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/cmd-select-pane.c b/cmd-select-pane.c
index aa12ae1e..7652f608 100644
--- a/cmd-select-pane.c
+++ b/cmd-select-pane.c
@@ -33,7 +33,9 @@ const struct cmd_entry cmd_select_pane_entry = {
.args = { "DdegLlMmP:Rt:U", 0, 0 },
.usage = "[-DdegLlMmRU] [-P style] " CMD_TARGET_PANE_USAGE,
- .flags = CMD_PANE_T,
+ .tflag = CMD_PANE,
+
+ .flags = 0,
.exec = cmd_select_pane_exec
};
@@ -44,7 +46,9 @@ const struct cmd_entry cmd_last_pane_entry = {
.args = { "det:", 0, 0 },
.usage = "[-de] " CMD_TARGET_WINDOW_USAGE,
- .flags = CMD_WINDOW_T,
+ .tflag = CMD_WINDOW,
+
+ .flags = 0,
.exec = cmd_select_pane_exec
};