From b26087f6f337b87eb9679b8adec03e92e178c5d3 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 e57b8ccd17..3b1169fa52 100644 --- a/options/m_config.c +++ b/options/m_config.c @@ -767,7 +767,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