diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-12-08 10:01:16 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-12-08 10:01:16 +0000 |
commit | af8134a6ffe8304b6cb1849995f446eab8e53b53 (patch) | |
tree | 02ada102c67552ff8e9f1ef3c88a096460dd0aaa /tmux.h | |
parent | a988c36ccb7d411d995edfa9dbdb7682295d62a0 (diff) | |
parent | e0f26dcda36dc35741da6047a11efb853b3137d9 (diff) | |
download | rtmux-af8134a6ffe8304b6cb1849995f446eab8e53b53.tar.gz rtmux-af8134a6ffe8304b6cb1849995f446eab8e53b53.tar.bz2 rtmux-af8134a6ffe8304b6cb1849995f446eab8e53b53.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -695,10 +695,12 @@ struct grid { /* Hook data structures. */ struct hook { - const char *name; - struct cmd_q *cmdq; - struct cmd_list *cmdlist; - RB_ENTRY(hook) entry; + const char *name; + + struct cmd_q *cmdq; + struct cmd_list *cmdlist; + + RB_ENTRY(hook) entry; }; /* Option data structures. */ @@ -1492,8 +1494,7 @@ char *paste_make_sample(struct paste_buffer *); #define FORMAT_STATUS 0x1 #define FORMAT_FORCE 0x2 struct format_tree; -struct format_tree *format_create(void); -struct format_tree *format_create_flags(int); +struct format_tree *format_create(int); void format_free(struct format_tree *); void printflike(3, 4) format_add(struct format_tree *, const char *, const char *, ...); |