diff src/help.cc @ 5641:eb998631a4aa

[project @ 2006-03-04 22:21:01 by jwe]
author jwe
date Sat, 04 Mar 2006 22:21:01 +0000
parents 691de3e3c2f8
children 2618a0750ae6
line wrap: on
line diff
--- a/src/help.cc
+++ b/src/help.cc
@@ -450,7 +450,7 @@
 additional_help_message (std::ostream& os)
 {
   if (! Vsuppress_verbose_help_message)
-    os << "\n\
+    os << "\
 Additional help for built-in functions, operators, and variables\n\
 is available in the on-line version of the manual.  Use the command\n\
 `help -i <topic>' to search the manual index.\n\
@@ -845,10 +845,13 @@
 
       if (h.length () > 0)
 	{
-	  sym_rec->which (os);
-	  os << "\n";
 	  h = extract_help_from_dispatch (nm) + h;
 	  display_help_text (os, h);
+	  if (! Vsuppress_verbose_help_message)
+	    {
+	      sym_rec->which (os);
+	      os << "\n";
+	    }
 	  os << "\n";
 	  retval = true;
 	}