=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-unbind-key.c,v retrieving revision 1.25 retrieving revision 1.26 diff -c -r1.25 -r1.26 *** src/usr.bin/tmux/cmd-unbind-key.c 2016/01/19 15:59:12 1.25 --- src/usr.bin/tmux/cmd-unbind-key.c 2016/10/10 21:51:39 1.26 *************** *** 1,4 **** ! /* $OpenBSD: cmd-unbind-key.c,v 1.25 2016/01/19 15:59:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-unbind-key.c,v 1.26 2016/10/10 21:51:39 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 26,34 **** * Unbind key from command. */ ! enum cmd_retval cmd_unbind_key_exec(struct cmd *, struct cmd_q *); ! enum cmd_retval cmd_unbind_key_mode_table(struct cmd *, struct cmd_q *, ! key_code); const struct cmd_entry cmd_unbind_key_entry = { .name = "unbind-key", --- 26,34 ---- * Unbind key from command. */ ! static enum cmd_retval cmd_unbind_key_exec(struct cmd *, struct cmd_q *); ! static enum cmd_retval cmd_unbind_key_mode_table(struct cmd *, struct cmd_q *, ! key_code); const struct cmd_entry cmd_unbind_key_entry = { .name = "unbind-key", *************** *** 41,47 **** .exec = cmd_unbind_key_exec }; ! enum cmd_retval cmd_unbind_key_exec(struct cmd *self, struct cmd_q *cmdq) { struct args *args = self->args; --- 41,47 ---- .exec = cmd_unbind_key_exec }; ! static enum cmd_retval cmd_unbind_key_exec(struct cmd *self, struct cmd_q *cmdq) { struct args *args = self->args; *************** *** 98,104 **** return (CMD_RETURN_NORMAL); } ! enum cmd_retval cmd_unbind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, key_code key) { struct args *args = self->args; --- 98,104 ---- return (CMD_RETURN_NORMAL); } ! static enum cmd_retval cmd_unbind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, key_code key) { struct args *args = self->args;