diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 4be62377e..e31a4ad3a 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -28,6 +28,7 @@ Bug fixes:: * core: add key ctrl-backspace in /help key (issue #1975) * core: keep keys ctrl-H and ctrl-? (in lower case) if they were manually bound to custom commands in a previous version * core: fix cursor position after `/plugin list -i` or `/plugin list -il` + * fset: remove extra spaces between min and max values when second format is used * irc: fix display of country code in message 344 received as whois geo info (issue #1736) * script: fix cursor position after `/script list -i` or `/script list -il` * script: fix buffer used by command `/script list -i|-il|-o|-ol` diff --git a/src/plugins/fset/fset-config.c b/src/plugins/fset/fset-config.c index 1086cef2c..b3344cad9 100644 --- a/src/plugins/fset/fset-config.c +++ b/src/plugins/fset/fset-config.c @@ -584,8 +584,8 @@ fset_config_init () NULL, 0, 0, "${marked} ${name} ${type} ${value2}${newline}" " ${empty_name} ${_default_value}${color:244} -- " - "${min}..${max}${newline}" - " ${empty_name} ${description}", + "${_min}..${_max}${newline}" + " ${empty_name} ${_description}", NULL, 0, NULL, NULL, NULL, &fset_config_change_format_cb, NULL, NULL,