diff options
author | nicm <nicm> | 2020-05-16 16:02:24 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 16:02:24 +0000 |
commit | d67245c734c9c600ad6d186570a1230aa21b80c8 (patch) | |
tree | 9e71286a88716251c09d3dd2c2b323074f9f40ff /format.c | |
parent | 472d77fd0f4af8431267473df3cf109030760fa1 (diff) | |
download | rtmux-d67245c734c9c600ad6d186570a1230aa21b80c8.tar.gz rtmux-d67245c734c9c600ad6d186570a1230aa21b80c8.tar.bz2 rtmux-d67245c734c9c600ad6d186570a1230aa21b80c8.zip |
Add a customize mode where keys and options may be browsed and changed,
includes adding a brief description of each option. Bound to "C" by
default.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1392,7 +1392,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, 1); + found = options_to_string(o, idx, 1); goto found; } |