diff options
author | nicm <nicm> | 2014-10-20 22:34:31 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-10-20 22:34:31 +0000 |
commit | 7afe417a60a3b80ba16cd758b62e3f500350fb3e (patch) | |
tree | 5d1917ff4fbfb74fbb62c49bca16481503134fd2 | |
parent | 45dfc5a074e2ceae11a6d4aeae597bee1e028503 (diff) | |
download | rtmux-7afe417a60a3b80ba16cd758b62e3f500350fb3e.tar.gz rtmux-7afe417a60a3b80ba16cd758b62e3f500350fb3e.tar.bz2 rtmux-7afe417a60a3b80ba16cd758b62e3f500350fb3e.zip |
Missed a couple of cmd_entry struct members from previous.
-rw-r--r-- | cmd-respawn-pane.c | 1 | ||||
-rw-r--r-- | cmd-select-layout.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/cmd-respawn-pane.c b/cmd-respawn-pane.c index c2dcf9e6..47031539 100644 --- a/cmd-respawn-pane.c +++ b/cmd-respawn-pane.c @@ -35,7 +35,6 @@ const struct cmd_entry cmd_respawn_pane_entry = { "kt:", 0, -1, "[-k] " CMD_TARGET_PANE_USAGE " [command]", 0, - NULL, cmd_respawn_pane_exec }; diff --git a/cmd-select-layout.c b/cmd-select-layout.c index 5f007740..77137b74 100644 --- a/cmd-select-layout.c +++ b/cmd-select-layout.c @@ -30,6 +30,7 @@ const struct cmd_entry cmd_select_layout_entry = { "select-layout", "selectl", "npt:", 0, 1, "[-np] " CMD_TARGET_WINDOW_USAGE " [layout-name]", + 0, cmd_select_layout_exec }; |