From 3f0f5ec3b7ee5bdbdc085f133920b83a611601b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 24 Jun 2021 17:50:44 +0200 Subject: [PATCH] client: add +/-graphemes to version output --- client.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }