From: Randy Dunlap Put a visible line between symbol "defined at :linenum" and the symbol's help text. Signed-off-by: Randy Dunlap --- scripts/kconfig/qconf.cc | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff -Naurp linux-2614-rc2-git4/scripts/kconfig/qconf.cc~xconfig_sep_line linux-2614-rc2-git4/scripts/kconfig/qconf.cc --- linux-2614-rc2-git4/scripts/kconfig/qconf.cc~xconfig_sep_line 2005-08-28 16:41:01.000000000 -0700 +++ linux-2614-rc2-git4/scripts/kconfig/qconf.cc 2005-09-24 03:11:47.000000000 -0700 @@ -1117,8 +1117,10 @@ void ConfigMainWindow::setHelp(QListView } } } - if (showDebug) - debug += QString().sprintf("defined at %s:%d

", menu->file->name, menu->lineno); + if (showDebug) { + debug += QString().sprintf("defined at %s:%d
", menu->file->name, menu->lineno); + debug += QString().sprintf("--------------------------------------------------
"); + } helpText->setText(head + debug + help); }