# HG changeset patch # User jwe # Date 1141510861 0 # Node ID eb998631a4aa752320ad93237aa2d137e19d383c # Parent 426719471ac6ae27a67a3a3c28a27bdded5a5f8b [project @ 2006-03-04 22:21:01 by jwe] diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2006-03-04 John W. Eaton + + * help.cc (additional_help_message): Don't print "\n" before message. + (help_from_symbol_table): If Vsuppress_verbose_help_message is + true, don't print which info. + 2006-03-03 John W. Eaton * dirfns.cc (Vconfirm_recursive_rmdir): New static variable. diff --git a/src/help.cc b/src/help.cc --- 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 ' 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; }