diff options
author | 2014-10-20 22:34:31 +0000 | |
---|---|---|
committer | 2014-10-20 22:34:31 +0000 | |
commit | be28c754b7a6b39edc7febe21e6058366b7046f1 (patch) | |
tree | fe99d671e0b9bfc32b683e08e1287cd62350d98d /usr.bin/tmux/cmd-select-layout.c | |
parent | Instead of setting up the default keys by building the key struct (diff) | |
download | wireguard-openbsd-be28c754b7a6b39edc7febe21e6058366b7046f1.tar.xz wireguard-openbsd-be28c754b7a6b39edc7febe21e6058366b7046f1.zip |
Missed a couple of cmd_entry struct members from previous.
Diffstat (limited to 'usr.bin/tmux/cmd-select-layout.c')
-rw-r--r-- | usr.bin/tmux/cmd-select-layout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-select-layout.c b/usr.bin/tmux/cmd-select-layout.c index 0caa07a7ed0..02fedb615f2 100644 --- a/usr.bin/tmux/cmd-select-layout.c +++ b/usr.bin/tmux/cmd-select-layout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-select-layout.c,v 1.23 2014/10/20 22:29:25 nicm Exp $ */ +/* $OpenBSD: cmd-select-layout.c,v 1.24 2014/10/20 22:34:31 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 }; |