diff options
author | nicm <nicm> | 2017-01-30 21:41:17 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-30 21:41:17 +0000 |
commit | 3408595f77920764bf6c4c313a0abc6a1cfb8048 (patch) | |
tree | 1e2c21925847bd18641b589ea4028c78187a0212 /tmux.h | |
parent | b6099f31ead647749574c36b34619db940587fc7 (diff) | |
download | rtmux-3408595f77920764bf6c4c313a0abc6a1cfb8048.tar.gz rtmux-3408595f77920764bf6c4c313a0abc6a1cfb8048.tar.bz2 rtmux-3408595f77920764bf6c4c313a0abc6a1cfb8048.zip |
When a flag option is used in a format, it should use the number form
not string.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |