The patch titled qconf: fix showing help info on failed search has been added to the -mm tree. Its filename is qconf-fix-showing-help-info-on-failed-search.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: qconf: fix showing help info on failed search From: "Cyrill V. Gorcunov" <gorcunov@xxxxxxxxx> qconf does not clear help text in search window if previous search has been failed. Signed-off-by: Cyrill V. Gorcunov <gorcunov@xxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/kconfig/qconf.cc | 1 + 1 files changed, 1 insertion(+) diff -puN scripts/kconfig/qconf.cc~qconf-fix-showing-help-info-on-failed-search scripts/kconfig/qconf.cc --- a/scripts/kconfig/qconf.cc~qconf-fix-showing-help-info-on-failed-search +++ a/scripts/kconfig/qconf.cc @@ -1248,6 +1248,7 @@ void ConfigSearchWindow::search(void) free(result); list->list->clear(); + info->clear(); result = sym_re_search(editField->text().latin1()); if (!result) _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are qconf-fix-showing-help-info-on-failed-search.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html