mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
foot: add +/-graphemes to version output
This commit is contained in:
parent
4ea7c5b63f
commit
a319ddf094
1 changed files with 3 additions and 2 deletions
5
main.c
5
main.c
|
|
@ -45,10 +45,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