Skip to content

Commit 929ce50

Browse files
committed
kconfig: qconf: remove non-functional href="m..." tag
The only functional tag is href="s<symbol_name>". Commit c4f7398 ("kconfig: qconf: make debug links work again") changed prop->name to sym->name for this reference, but it missed to change the tag "m" to "s". This tag is not functional at all. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 8e8ce95 commit 929ce50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/kconfig/qconf.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,9 +1065,9 @@ QString ConfigInfoView::debug_info(struct symbol *sym)
10651065
switch (prop->type) {
10661066
case P_PROMPT:
10671067
case P_MENU:
1068-
stream << "prompt: <a href=\"m" << sym->name << "\">";
1068+
stream << "prompt: ";
10691069
stream << print_filter(prop->text);
1070-
stream << "</a><br>";
1070+
stream << "<br>";
10711071
break;
10721072
case P_DEFAULT:
10731073
case P_SELECT:

0 commit comments

Comments
 (0)