summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2015-12-08 08:34:18 +0000
committernicm <nicm>2015-12-08 08:34:18 +0000
commite0f26dcda36dc35741da6047a11efb853b3137d9 (patch)
treef7ad82e959d7b16ea05a2494f040002def520dc1 /tmux.h
parent8f671d3eefa0af67b9e753eeae032e3ded6ffd00 (diff)
Remove format_create_flags and just pass flags to format_create.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 7757f12f..5df72052 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1492,8 +1492,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 *, ...);