aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2015-12-08 10:01:16 +0000
committerThomas Adam <thomas@xteddy.org>2015-12-08 10:01:16 +0000
commitaf8134a6ffe8304b6cb1849995f446eab8e53b53 (patch)
tree02ada102c67552ff8e9f1ef3c88a096460dd0aaa /tmux.h
parenta988c36ccb7d411d995edfa9dbdb7682295d62a0 (diff)
parente0f26dcda36dc35741da6047a11efb853b3137d9 (diff)
downloadrtmux-af8134a6ffe8304b6cb1849995f446eab8e53b53.tar.gz
rtmux-af8134a6ffe8304b6cb1849995f446eab8e53b53.tar.bz2
rtmux-af8134a6ffe8304b6cb1849995f446eab8e53b53.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/tmux.h b/tmux.h
index c3dd6c4f..e84685cf 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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 *, ...);