diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui-layout.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0a070dc..90c895a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-02-24 Tom de Vries <tdevries@suse.de> + + * tui/tui-layout.c (_initialize_tui_layout): Fix help messages for + commands layout next/prev/regs. + 2020-02-22 Tom Tromey <tom@tromey.com> * dwarf2/loc.h (dwarf2_compile_expr_to_ax): Don't declare. diff --git a/gdb/tui/tui-layout.c b/gdb/tui/tui-layout.c index b2c47c0..9014889 100644 --- a/gdb/tui/tui-layout.c +++ b/gdb/tui/tui-layout.c @@ -1044,13 +1044,13 @@ Usage: layout prev | next | LAYOUT-NAME"), &layout_list, "layout ", 0, &cmdlist); add_cmd ("next", class_tui, tui_next_layout_command, - _("Apply the next TUI layout"), + _("Apply the next TUI layout."), &layout_list); add_cmd ("prev", class_tui, tui_prev_layout_command, - _("Apply the previous TUI layout"), + _("Apply the previous TUI layout."), &layout_list); add_cmd ("regs", class_tui, tui_regs_layout_command, - _("Apply the TUI register layout"), + _("Apply the TUI register layout."), &layout_list); add_cmd ("new-layout", class_tui, tui_new_layout_command, |