From e3abbe7e9458be7a92c27bc4649295b935340699 Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Sat, 9 Mar 2019 12:25:11 +0100 Subject: [PATCH] Ensure 'help set/show print inferior-events' shows the example events. Without this patch, the help stops after 'e.g.' : (gdb) apropos \(inferior\|thread\) event set print inferior-events -- Set printing of inferior events (e.g. set print thread-events -- Set printing of thread events (such as thread start and exit) show print inferior-events -- Show printing of inferior events (e.g. show print thread-events -- Show printing of thread events (such as thread start and exit) Using the same notation as for the thread evenets (i.e. 'such as') gives: (gdb) apropos \(inferior\|thread\) event set print inferior-events -- Set printing of inferior events (such as inferior start and exit) set print thread-events -- Set printing of thread events (such as thread start and exit) show print inferior-events -- Show printing of inferior events (such as inferior start and exit) show print thread-events -- Show printing of thread events (such as thread start and exit) --- gdb/ChangeLog | 5 +++++ gdb/inferior.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bb10c7d4471..77bad3830cf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2019-02-27 Philippe Waroquiers + + * inferior.c (initialize_inferiors): Ensure 'help set/show print + inferior-events' shows the example events. + 2019-03-08 Eli Zaretskii Support styling on native MS-Windows console diff --git a/gdb/inferior.c b/gdb/inferior.c index b13d8f3bff5..cb8063ba032 100644 --- a/gdb/inferior.c +++ b/gdb/inferior.c @@ -930,8 +930,8 @@ The new inferior ID must be currently known."), add_setshow_boolean_cmd ("inferior-events", no_class, &print_inferior_events, _("\ -Set printing of inferior events (e.g., inferior start and exit)."), _("\ -Show printing of inferior events (e.g., inferior start and exit)."), NULL, +Set printing of inferior events (such as inferior start and exit)."), _("\ +Show printing of inferior events (such as inferior start and exit)."), NULL, NULL, show_print_inferior_events, &setprintlist, &showprintlist); -- 2.30.2