[2/2] Capitalize "<TAB>" in require_record_target error

Message ID 20181107045624.30582-3-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey Nov. 7, 2018, 4:56 a.m. UTC
  This changes require_record_target to say "<TAB>" rather than "<tab>".
I think capitalizing here is a bit more GNU-ish, based on Emacs usage
and one other case in gdb.

gdb/ChangeLog
2018-11-06  Tom Tromey  <tom@tromey.com>

	* record.c (require_record_target): Upper-case "<TAB>".
---
 gdb/ChangeLog | 4 ++++
 gdb/record.c  | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)
  

Patch

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-<tab><tab>\" commands first."));
+	     "Use one of the \"target record-<TAB><TAB>\" commands first."));
 
   return t;
 }