From: Randy Dunlap <rdunlap@xenotime.net>

Put a visible line between symbol "defined at <filename>:linenum"
and the symbol's help text.

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---

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