Capitalize "<TAB>" in require_record_target error
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-08 Tom Tromey <tom@tromey.com> * record.c (require_record_target): Upper-case "<TAB>".
This commit is contained in:
parent
3c6618cd22
commit
9c710e1157
2 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue