=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/Attic/cmd-clear-history.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- src/usr.bin/tmux/Attic/cmd-clear-history.c 2015/12/13 14:32:38 1.15 +++ src/usr.bin/tmux/Attic/cmd-clear-history.c 2015/12/13 21:53:57 1.16 @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-clear-history.c,v 1.15 2015/12/13 14:32:38 nicm Exp $ */ +/* $OpenBSD: cmd-clear-history.c,v 1.16 2015/12/13 21:53:57 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -27,11 +27,14 @@ enum cmd_retval cmd_clear_history_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_clear_history_entry = { - "clear-history", "clearhist", - "t:", 0, 0, - CMD_TARGET_PANE_USAGE, - CMD_PANE_T, - cmd_clear_history_exec + .name = "clear-history", + .alias = "clearhist", + + .args = { "t:", 0, 0 }, + .usage = CMD_TARGET_PANE_USAGE, + + .flags = CMD_PANE_T, + .exec = cmd_clear_history_exec }; enum cmd_retval