Blame SOURCES/gdb-rhbz1842691-corefile-mem-access-15of15.patch

0c1cd1
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
0c1cd1
From: Keith Seitz <keiths@redhat.com>
0c1cd1
Date: Tue, 28 Jul 2020 09:49:56 -0400
0c1cd1
Subject: gdb-rhbz1842691-corefile-mem-access-15of15.patch
0c1cd1
0c1cd1
;; Add period to help text for maint print core-file-backed-mappings
0c1cd1
;; Kevin Buettner, RH BZ 1842961
0c1cd1
0c1cd1
   Author: Kevin Buettner <kevinb@redhat.com>
0c1cd1
   Date:   Thu Jul 23 13:26:44 2020 -0700
0c1cd1
0c1cd1
    Fix BZ 26294 - Add period to help text for maint print core-file-backed-mappings
0c1cd1
0c1cd1
    gdb/ChangeLog:
0c1cd1
0c1cd1
    	PR corefiles/26294
0c1cd1
    	* corelow.c (_initialize_corelow): Add period to help text
0c1cd1
    	for "maintenance print core-file-backed-mappings".
0c1cd1
0c1cd1
diff --git a/gdb/corelow.c b/gdb/corelow.c
0c1cd1
--- a/gdb/corelow.c
0c1cd1
+++ b/gdb/corelow.c
0c1cd1
@@ -1388,6 +1388,6 @@ Show whether CORE-FILE loads the build-id associated files automatically."),
0c1cd1
 			   &setlist, &showlist);
0c1cd1
   add_cmd ("core-file-backed-mappings", class_maintenance,
0c1cd1
            maintenance_print_core_file_backed_mappings,
0c1cd1
-	   _("Print core file's file-backed mappings"),
0c1cd1
+	   _("Print core file's file-backed mappings."),
0c1cd1
 	   &maintenanceprintlist);
0c1cd1
 }