diff --git a/client.c b/client.c index 95c57656..9764da11 100644 --- a/client.c +++ b/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; }