gdb: make deprecated_cmd_warning i18n friendly
authorAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 10 Dec 2020 14:47:18 +0000 (14:47 +0000)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Fri, 11 Dec 2020 22:10:50 +0000 (22:10 +0000)
commit44c77c32720c25f56a34ec4114c7addf5836ba97
tree865794887de9bc0d9f95a885b35527d995ba1203
parent9ef6d4a1b48ea1f5693aa270b8b768146a31b9e9
gdb: make deprecated_cmd_warning i18n friendly

Rewrite deprecated_cmd_warning to be i18n friendly.  While I'm going
through the function I also cleaned up some whitespace issues,
replaced uses of NULL with nullptr, and moved some comments to avoid
having to add { ... }.

Though the message being printed has a 'Warning: ' prefix I could have
changed from using printf_filtered to use warning, however, I haven't
done that in this commit as that would change what GDB outputs and I
wanted this commit NOT to change the output.

There should be no user visible changes after this commit.

gdb/ChangeLog:

* cli/cli-decode.c (deprecated_cmd_warning): Use nullptr instead
of NULL.  Don't print message piece by piece, but sentence at a
time to allow internationalisation.  Some whitespace cleanup.
gdb/ChangeLog
gdb/cli/cli-decode.c