From 895d3f9e3e146e0f185000962f0897c1fc693dac Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 19 Jan 2023 15:24:32 -0700 Subject: [PATCH] [hb-info] Mark --show-all as default --- util/hb-info.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/hb-info.cc b/util/hb-info.cc index 27af87fd7..9ffd87cfb 100644 --- a/util/hb-info.cc +++ b/util/hb-info.cc @@ -40,7 +40,7 @@ struct info_t { {"all", 'a', 0, G_OPTION_ARG_NONE, &this->all, "Show everything", nullptr}, - {"show-all", 0, 0, G_OPTION_ARG_NONE, &this->show_all, "Show all short information", nullptr}, + {"show-all", 0, 0, G_OPTION_ARG_NONE, &this->show_all, "Show all short information (default)", nullptr}, {"show-family", 0, 0, G_OPTION_ARG_NONE, &this->show_family, "Show family name", nullptr}, {"show-style", 0, 0, G_OPTION_ARG_NONE, &this->show_style, "Show style name", nullptr}, {"show-unique-name",0, 0, G_OPTION_ARG_NONE, &this->show_unique_name, "Show unique name", nullptr},