mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
client: add +/-graphemes to version output
This commit is contained in:
parent
a319ddf094
commit
3f0f5ec3b7
1 changed files with 3 additions and 2 deletions
5
client.c
5
client.c
|
|
@ -43,10 +43,11 @@ static const char *
|
|||
version_and_features(void)
|
||||
{
|
||||
static char buf[256];
|
||||
snprintf(buf, sizeof(buf), "version: %s %cime %cpgo",
|
||||
snprintf(buf, sizeof(buf), "version: %s %cpgo %cime %cgraphemes",
|
||||
FOOT_VERSION,
|
||||
feature_pgo() ? '+' : '-',
|
||||
feature_ime() ? '+' : '-',
|
||||
feature_pgo() ? '+' : '-');
|
||||
feature_graphemes() ? '+' : '-');
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue