]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
kconfig: qconf: remove non-functional href="m..." tag
authorMasahiro Yamada <masahiroy@kernel.org>
Wed, 23 Oct 2024 18:18:00 +0000 (03:18 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Tue, 5 Nov 2024 23:46:34 +0000 (08:46 +0900)
The only functional tag is href="s<symbol_name>".

Commit c4f7398bee9c ("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 <masahiroy@kernel.org>
scripts/kconfig/qconf.cc

index acbc4331ebc5f79614394ea54ae5da544d3972ac..a208ef33128ff3a4376f168bd2563a61bb9c84f3 100644 (file)
@@ -1065,9 +1065,9 @@ QString ConfigInfoView::debug_info(struct symbol *sym)
                switch (prop->type) {
                case P_PROMPT:
                case P_MENU:
-                       stream << "prompt: <a href=\"m" << sym->name << "\">";
+                       stream << "prompt: ";
                        stream << print_filter(prop->text);
-                       stream << "</a><br>";
+                       stream << "<br>";
                        break;
                case P_DEFAULT:
                case P_SELECT: