=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.988 retrieving revision 1.989 diff -c -r1.988 -r1.989 *** src/usr.bin/tmux/tmux.h 2020/04/13 16:19:37 1.988 --- src/usr.bin/tmux/tmux.h 2020/04/13 18:59:41 1.989 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.988 2020/04/13 16:19:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.989 2020/04/13 18:59:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 2089,2094 **** --- 2089,2100 ---- struct cmd_parse_result *cmd_parse_from_file(FILE *, struct cmd_parse_input *); struct cmd_parse_result *cmd_parse_from_string(const char *, struct cmd_parse_input *); + enum cmd_parse_status cmd_parse_and_insert(const char *, + struct cmd_parse_input *, struct cmdq_item *, + struct cmdq_state *, char **); + enum cmd_parse_status cmd_parse_and_append(const char *, + struct cmd_parse_input *, struct client *, + struct cmdq_state *, char **); struct cmd_parse_result *cmd_parse_from_buffer(const void *, size_t, struct cmd_parse_input *); struct cmd_parse_result *cmd_parse_from_arguments(int, char **,