From 67c9845301a317dae5a33ba0de003ec060427ee4 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 19 Jan 2023 14:45:04 -0700 Subject: [PATCH] [hb-info] Make -l list tables ala ttx --- util/hb-info.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/hb-info.cc b/util/hb-info.cc index dbfffb8db..f09db5632 100644 --- a/util/hb-info.cc +++ b/util/hb-info.cc @@ -40,13 +40,13 @@ struct info_t { {"all", 'a', 0, G_OPTION_ARG_NONE, &this->all, "Show everything", nullptr}, - {"show-all", 's', 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", nullptr}, {"show-upem", 0, 0, G_OPTION_ARG_NONE, &this->show_upem, "Show Units-Per-EM", nullptr}, {"show-unicode-count",0, 0, G_OPTION_ARG_NONE, &this->show_unicode_count, "Show Unicode count", nullptr}, {"show-glyph-count",0, 0, G_OPTION_ARG_NONE, &this->show_glyph_count, "Show glyph count", nullptr}, - {"list-all", 'l', 0, G_OPTION_ARG_NONE, &this->list_all, "List all long information", nullptr}, - {"list-tables", 0, 0, G_OPTION_ARG_NONE, &this->list_tables, "List tables", nullptr}, + {"list-all", 0, 0, G_OPTION_ARG_NONE, &this->list_all, "List all long information", nullptr}, + {"list-tables", 'l', 0, G_OPTION_ARG_NONE, &this->list_tables, "List tables", nullptr}, {"list-unicodes", 0, 0, G_OPTION_ARG_NONE, &this->list_unicodes, "List characters", nullptr}, {"list-glyphs", 0, 0, G_OPTION_ARG_NONE, &this->list_glyphs, "List glyphs", nullptr}, {"list-scripts", 0, 0, G_OPTION_ARG_NONE, &this->list_scripts, "List layout scripts", nullptr},