From 9c710e1157caf7a2c3e4c816c72f88360f3e859c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 6 Nov 2018 20:12:36 -0700 Subject: [PATCH] Capitalize "" in require_record_target error This changes require_record_target to say "" rather than "". I think capitalizing here is a bit more GNU-ish, based on Emacs usage and one other case in gdb. gdb/ChangeLog 2018-11-08 Tom Tromey * record.c (require_record_target): Upper-case "". --- gdb/ChangeLog | 4 ++++ gdb/record.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8bb9685701..4ba96baeb4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2018-11-08 Tom Tromey + + * record.c (require_record_target): Upper-case "". + 2018-11-08 Tom Tromey * python/lib/gdb/command/pretty_printers.py diff --git a/gdb/record.c b/gdb/record.c index 2fd77824d4..fdc76f80cc 100644 --- a/gdb/record.c +++ b/gdb/record.c @@ -75,7 +75,7 @@ require_record_target (void) t = find_record_target (); if (t == NULL) error (_("No record target is currently active.\n" - "Use one of the \"target record-\" commands first.")); + "Use one of the \"target record-\" commands first.")); return t; } -- 2.34.1