mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
When a flag option is used in a format, it should use the number form
not string.
This commit is contained in:
@ -325,7 +325,7 @@ options_isstring(struct options_entry *o)
|
||||
}
|
||||
|
||||
const char *
|
||||
options_tostring(struct options_entry *o, int idx)
|
||||
options_tostring(struct options_entry *o, int idx, int numeric)
|
||||
{
|
||||
static char s[1024];
|
||||
const char *tmp;
|
||||
@ -355,7 +355,10 @@ options_tostring(struct options_entry *o, int idx)
|
||||
tmp = attributes_tostring(o->number);
|
||||
break;
|
||||
case OPTIONS_TABLE_FLAG:
|
||||
tmp = (o->number ? "on" : "off");
|
||||
if (numeric)
|
||||
xsnprintf(s, sizeof s, "%lld", o->number);
|
||||
else
|
||||
tmp = (o->number ? "on" : "off");
|
||||
break;
|
||||
case OPTIONS_TABLE_CHOICE:
|
||||
tmp = o->tableentry->choices[o->number];
|
||||
|
Reference in New Issue
Block a user