diff options
author | nicm <nicm> | 2019-05-25 07:18:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-25 07:18:20 +0000 |
commit | f8d3d247d884a9dc0b23f2799944c15630cab28f (patch) | |
tree | 4d96106a16701c94bec7475d1fb2e188e207df80 /tmux.h | |
parent | 6b0fa14470df848ae0735a3e0bab393c241acb86 (diff) | |
download | rtmux-f8d3d247d884a9dc0b23f2799944c15630cab28f.tar.gz rtmux-f8d3d247d884a9dc0b23f2799944c15630cab28f.tar.bz2 rtmux-f8d3d247d884a9dc0b23f2799944c15630cab28f.zip |
Merge cmd_list_parse into cmd-parse.y so it can use the new alias
processing code.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2016,12 +2016,13 @@ void cmd_parse_empty(struct cmd_parse_input *); 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 *); +struct cmd_parse_result *cmd_parse_from_arguments(int, char **, + struct cmd_parse_input *); /* cmd-list.c */ struct cmd_list *cmd_list_new(void); void cmd_list_append(struct cmd_list *, struct cmd *); void cmd_list_move(struct cmd_list *, struct cmd_list *); -struct cmd_list *cmd_list_parse(int, char **, const char *, u_int, char **); void cmd_list_free(struct cmd_list *); char *cmd_list_print(struct cmd_list *, int); |