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

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