=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.1124 retrieving revision 1.1125 diff -c -r1.1124 -r1.1125 *** src/usr.bin/tmux/tmux.h 2021/08/20 17:53:54 1.1124 --- src/usr.bin/tmux/tmux.h 2021/08/20 18:59:53 1.1125 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.1124 2021/08/20 17:53:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.1125 2021/08/20 18:59:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 37,43 **** extern char **environ; struct args; - struct args_value; struct client; struct cmd; struct cmd_find_state; --- 37,42 ---- *************** *** 1356,1362 **** }; TAILQ_HEAD(message_list, message_entry); ! /* Parsed arguments structures. */ struct args_entry; RB_HEAD(args_tree, args_entry); struct args { --- 1355,1367 ---- }; TAILQ_HEAD(message_list, message_entry); ! /* Argument value. */ ! struct args_value { ! char *value; ! TAILQ_ENTRY(args_value) entry; ! }; ! ! /* Arguments set. */ struct args_entry; RB_HEAD(args_tree, args_entry); struct args { *************** *** 2191,2198 **** const char *args_get(struct args *, u_char); u_char args_first(struct args *, struct args_entry **); u_char args_next(struct args_entry **); ! const char *args_first_value(struct args *, u_char, struct args_value **); ! const char *args_next_value(struct args_value **); long long args_strtonum(struct args *, u_char, long long, long long, char **); long long args_percentage(struct args *, u_char, long long, --- 2196,2203 ---- const char *args_get(struct args *, u_char); u_char args_first(struct args *, struct args_entry **); u_char args_next(struct args_entry **); ! struct args_value *args_first_value(struct args *, u_char); ! struct args_value *args_next_value(struct args_value *); long long args_strtonum(struct args *, u_char, long long, long long, char **); long long args_percentage(struct args *, u_char, long long,