+2020-06-09 Jonny Grant <jg@jguk.org>
+2020-06-09 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * main.c (captured_main_1): Don't print new line after help.
+ (print_gdb_help): add mailing list and IRC channel information
+ to --help. Add new lines between items in the footer. Remove
+ quotes around bug url.
+
2020-06-11 Keith Seitz <keiths@redhat.com>
PR gdb/21356
if (print_help)
{
print_gdb_help (gdb_stdout);
- fputs_unfiltered ("\n", gdb_stdout);
exit (0);
}
GDB manual (available as on-line info or a printed manual).\n\
"), stream);
if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
- fprintf_unfiltered (stream, _("\
-Report bugs to \"%s\".\n\
+ fprintf_unfiltered (stream, _("\n\
+Report bugs to %s.\n\
"), REPORT_BUGS_TO);
+ if (stream == gdb_stdout)
+ fprintf_unfiltered (stream, _("\n\
+You can ask GDB-related questions on the GDB users mailing list\n\
+(gdb@sourceware.org) or on GDB's IRC channel (#gdb on Freenode).\n"));
}