diff options
author | nicm <nicm> | 2019-04-26 11:38:51 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-04-26 11:38:51 +0000 |
commit | dfb7bb683057d08303955c49073f4b475bd0e2d6 (patch) | |
tree | 3adae7924f831bce4f28ec5aef5528793319ada4 /status.c | |
parent | f1e14f86c4d2467571e20a3dca4a96a3cc357897 (diff) | |
download | rtmux-dfb7bb683057d08303955c49073f4b475bd0e2d6.tar.gz rtmux-dfb7bb683057d08303955c49073f4b475bd0e2d6.tar.bz2 rtmux-dfb7bb683057d08303955c49073f4b475bd0e2d6.zip |
Merge hooks into options and make each one an array option. This allows
multiple commands to be easily bound to one hook. set-hook and
show-hooks remain but they are now variants of set-option and
show-options. show-options now has a -H flag to show hooks (by default
they are not shown).
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1323,7 +1323,7 @@ status_prompt_complete_list(u_int *size, const char *s) while (a != NULL) { value = options_array_item_value(a)->string; if ((cp = strchr(value, '=')) == NULL) - goto next; + goto next; valuelen = cp - value; if (slen > valuelen || strncmp(value, s, slen) != 0) goto next; |