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

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