We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53efe2e commit 68fd110Copy full SHA for 68fd110
1 file changed
scripts/kconfig/qconf.cc
@@ -1106,11 +1106,6 @@ void ConfigInfoView::menuInfo(void)
1106
1107
if (showDebug())
1108
debug = debug_info(sym);
1109
-
1110
- struct gstr help_gstr = str_new();
1111
- menu_get_ext_help(_menu, &help_gstr);
1112
- help = print_filter(str_get(&help_gstr));
1113
- str_free(&help_gstr);
1114
} else if (_menu->prompt) {
1115
head += "<big><b>";
1116
head += print_filter(_menu->prompt->text);
@@ -1126,7 +1121,7 @@ void ConfigInfoView::menuInfo(void)
1126
1121
1127
1122
debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno);
1128
1123
1129
- setText(head + debug + help);
1124
+ setText(head + debug);
1130
1125
}
1131
1132
QString ConfigInfoView::debug_info(struct symbol *sym)
0 commit comments