From: Karsten Wiese In xconfig's display integer and string values are also shown as part of the config item's descriptive text. This patch updates the descriptive text, when the corresponding value has been changed. Fix for http://bugzilla.kernel.org/show_bug.cgi?id=7744 Signed-off-by: Karsten Wiese Acked-by: Randy Dunlap Cc: Roman Zippel Signed-off-by: Andrew Morton --- scripts/kconfig/qconf.cc | 2 ++ 1 file changed, 2 insertions(+) diff -puN scripts/kconfig/qconf.cc~qconf-immediately-update-integer-and-string-values-in-xconfig-display scripts/kconfig/qconf.cc --- a/scripts/kconfig/qconf.cc~qconf-immediately-update-integer-and-string-values-in-xconfig-display +++ a/scripts/kconfig/qconf.cc @@ -89,6 +89,8 @@ void ConfigItem::okRename(int col) { Parent::okRename(col); sym_set_string_value(menu->sym, text(dataColIdx).latin1()); + sym_calc_value(menu->sym); + updateMenu(); } #endif _