From 57f149e26ada032c8cc399e4a3124072095b727a Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 6 Jan 2015 07:01:07 +0100 Subject: options: don't cut off long options in --list-options This was by design, so that overly long options don't mess up the column layout, but I guess it doesn't have much worth. Fixes #1426. --- options/m_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/m_config.c b/options/m_config.c index 852d4c194c..aad86419c5 100644 --- a/options/m_config.c +++ b/options/m_config.c @@ -734,7 +734,7 @@ void m_config_print_option_list(const struct m_config *config) continue; if (co->is_generated) continue; - MP_INFO(config, " %s%-30.30s", prefix, co->name); + MP_INFO(config, " %s%-30s", prefix, co->name); if (opt->type == &m_option_type_choice) { MP_INFO(config, " Choices:"); struct m_opt_choice_alternatives *alt = opt->priv; -- cgit v1.2.3