From: Tom Tromey Date: Wed, 7 Nov 2018 03:12:36 +0000 (-0700) Subject: Capitalize "" in require_record_target error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c710e1157caf7a2c3e4c816c72f88360f3e859c;p=binutils-gdb.git 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 "". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8bb9685701a..4ba96baeb43 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 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; }