From 9c710e1157caf7a2c3e4c816c72f88360f3e859c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 6 Nov 2018 20:12:36 -0700 Subject: 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/record.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/record.c') diff --git a/gdb/record.c b/gdb/record.c index 2fd77824d4d..fdc76f80cc2 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; } -- cgit v1.2.1