diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-01-31 12:52:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-01-31 12:52:50 +0000 |
commit | 9b9a5a292d656f14c927a36bf77af4a4cf1ecb3a (patch) | |
tree | 11c1c9ad419ed1dc8bb7d3b67fe01c4befff1c1c /format.c | |
parent | c54a5d9fb3d282354e831b75fe0ad75035cb08b9 (diff) | |
parent | d8da761d54ed0d2b449e412511496e67ce8d33ac (diff) | |
download | rtmux-9b9a5a292d656f14c927a36bf77af4a4cf1ecb3a.tar.gz rtmux-9b9a5a292d656f14c927a36bf77af4a4cf1ecb3a.tar.bz2 rtmux-9b9a5a292d656f14c927a36bf77af4a4cf1ecb3a.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -658,7 +658,7 @@ format_find(struct format_tree *ft, const char *key, int modifiers) if (o == NULL) o = options_parse_get(global_s_options, key, &idx, 0); if (o != NULL) { - found = options_tostring(o, idx); + found = options_tostring(o, idx, 1); goto found; } } |