aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2020-07-23 13:26:44 -0700
committerKevin Buettner <kevinb@redhat.com>2020-07-23 13:41:36 -0700
commit513487e1a8feefec1ba8f51c1dec56800a927dfa (patch)
treeb3ffebdefeca8461f06ace216c1f6909d1a9f3e3 /gdb
parent97c79e2174fbb0dda16850fa5366592e93d31cb9 (diff)
downloadbinutils-513487e1a8feefec1ba8f51c1dec56800a927dfa.zip
binutils-513487e1a8feefec1ba8f51c1dec56800a927dfa.tar.gz
binutils-513487e1a8feefec1ba8f51c1dec56800a927dfa.tar.bz2
Fix BZ 26294 - Add period to help text for maint print core-file-backed-mappings
gdb/ChangeLog: PR corefiles/26294 * corelow.c (_initialize_corelow): Add period to help text for "maintenance print core-file-backed-mappings".
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/corelow.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c39ea07..84f7bb7 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2020-07-23 Kevin Buettner <kevinb@redhat.com>
+
+ PR corefiles/26294
+ * corelow.c (_initialize_corelow): Add period to help text
+ for "maintenance print core-file-backed-mappings".
+
2020-07-23 Pedro Alves <pedro@palves.net>
* frame-unwind.c (frame_unwind_try_unwinder): On exception, don't
diff --git a/gdb/corelow.c b/gdb/corelow.c
index 2add783..367f54c 100644
--- a/gdb/corelow.c
+++ b/gdb/corelow.c
@@ -1119,6 +1119,6 @@ _initialize_corelow ()
add_target (core_target_info, core_target_open, filename_completer);
add_cmd ("core-file-backed-mappings", class_maintenance,
maintenance_print_core_file_backed_mappings,
- _("Print core file's file-backed mappings"),
+ _("Print core file's file-backed mappings."),
&maintenanceprintlist);
}