diff options
Diffstat (limited to 'gdb/gdb-events.c')
-rw-r--r-- | gdb/gdb-events.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/gdb-events.c b/gdb/gdb-events.c index a321122..7f01439 100644 --- a/gdb/gdb-events.c +++ b/gdb/gdb-events.c @@ -45,6 +45,13 @@ static struct gdb_events queue_event_hooks; static struct gdb_events *current_event_hooks = &null_event_hooks; int gdb_events_debug; +static void +show_gdb_events_debug (struct ui_file *file, int from_tty, + struct cmd_list_element *c, const char *value) +{ + fprintf_filtered (file, _("Event debugging is %s.\n"), value); +} + void breakpoint_create_event (int b) @@ -338,6 +345,6 @@ Set event debugging."), _("\ Show event debugging."), _("\ When non-zero, event/notify debugging is enabled."), NULL, - NULL, /* FIXME: i18n: */ + show_gdb_events_debug, &setdebuglist, &showdebuglist); } |