From 3408595f77920764bf6c4c313a0abc6a1cfb8048 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 30 Jan 2017 21:41:17 +0000 Subject: When a flag option is used in a format, it should use the number form not string. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index f81fbbcd..322ebe90 100644 --- a/tmux.h +++ b/tmux.h @@ -1562,7 +1562,7 @@ int options_array_set(struct options_entry *, u_int, const char *, int options_array_size(struct options_entry *, u_int *); void options_array_assign(struct options_entry *, const char *); int options_isstring(struct options_entry *); -const char *options_tostring(struct options_entry *, int); +const char *options_tostring(struct options_entry *, int, int); char *options_parse(const char *, int *); struct options_entry *options_parse_get(struct options *, const char *, int *, int); -- cgit