From 7af0624bdf9d2c8d712eacb5dd46787deeb5cfd6 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 19 Jan 2023 15:11:55 -0700 Subject: [PATCH] [hb-info] Remove unintended short option --- util/hb-info.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/hb-info.cc b/util/hb-info.cc index f9ca77757..bb7e0a3b2 100644 --- a/util/hb-info.cc +++ b/util/hb-info.cc @@ -50,8 +50,8 @@ struct info_t {"show-glyph-count",0, 0, G_OPTION_ARG_NONE, &this->show_glyph_count, "Show glyph count", nullptr}, {"list-all", 0, 0, G_OPTION_ARG_NONE, &this->list_all, "List all long information", nullptr}, - {"list-names", 'l', 0, G_OPTION_ARG_NONE, &this->list_names, "List names", nullptr}, - {"list-tables", 'l', 0, G_OPTION_ARG_NONE, &this->list_tables, "List tables", nullptr}, + {"list-names", 0, 0, G_OPTION_ARG_NONE, &this->list_names, "List names", nullptr}, + {"list-tables", 0, 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},