=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-split-window.c,v retrieving revision 1.51 retrieving revision 1.52 diff -c -r1.51 -r1.52 *** src/usr.bin/tmux/cmd-split-window.c 2014/09/01 21:50:18 1.51 --- src/usr.bin/tmux/cmd-split-window.c 2014/10/20 22:29:25 1.52 *************** *** 1,4 **** ! /* $OpenBSD: cmd-split-window.c,v 1.51 2014/09/01 21:50:18 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-split-window.c,v 1.52 2014/10/20 22:29:25 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 31,37 **** * Split a window (add a new pane). */ - void cmd_split_window_key_binding(struct cmd *, int); enum cmd_retval cmd_split_window_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_split_window_entry = { --- 31,36 ---- *************** *** 40,56 **** "[-dhvP] [-c start-directory] [-F format] [-p percentage|-l size] " CMD_TARGET_PANE_USAGE " [command]", 0, - cmd_split_window_key_binding, cmd_split_window_exec }; - - void - cmd_split_window_key_binding(struct cmd *self, int key) - { - self->args = args_create(0); - if (key == '%') - args_set(self->args, 'h', NULL); - } enum cmd_retval cmd_split_window_exec(struct cmd *self, struct cmd_q *cmdq) --- 39,46 ----