=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.1133 retrieving revision 1.1134 diff -c -r1.1133 -r1.1134 *** src/usr.bin/tmux/tmux.h 2021/08/21 18:39:07 1.1133 --- src/usr.bin/tmux/tmux.h 2021/08/21 20:46:43 1.1134 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.1133 2021/08/21 18:39:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.1134 2021/08/21 20:46:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1369,1374 **** --- 1369,1375 ---- char *string; struct cmd_list *cmdlist; }; + char *cached; TAILQ_ENTRY(args_value) entry; }; *************** *** 2196,2202 **** int tty_keys_next(struct tty *); /* arguments.c */ ! void args_set(struct args *, u_char, const char *); struct args *args_create(void); struct args *args_parse(const struct args_parse *, struct args_value *, u_int); --- 2197,2203 ---- int tty_keys_next(struct tty *); /* arguments.c */ ! void args_set(struct args *, u_char, struct args_value *); struct args *args_create(void); struct args *args_parse(const struct args_parse *, struct args_value *, u_int); *************** *** 2210,2215 **** --- 2211,2217 ---- u_char args_first(struct args *, struct args_entry **); u_char args_next(struct args_entry **); u_int args_count(struct args *); + struct args_value *args_value(struct args *, u_int); const char *args_string(struct args *, u_int); struct args_value *args_first_value(struct args *, u_char); struct args_value *args_next_value(struct args_value *);