This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 0d0ed555bff Add quotemeta to gdb test suite new c0cb8961421 Remove language_defn::emitchar new 8366bf9435b Change generic_emit_char to print the quotes new 4b03223ed5f Introduce character-printing class new b3c9ef6fceb Move wchar_printer implementation to a new file new d26406ed1bf Rewrite Rust character printer new 83298faf7ff Rewrite Ada character printer new a51fd5b8c25 Rewrite Modula-2 character printer new 444c9b4946c Rewrite Pascal character printer new 90484497909 Rewrite Fortran character printer
The 9 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/Makefile.in | 1 + gdb/ada-lang.c | 67 ++++- gdb/ada-lang.h | 8 - gdb/ada-valprint.c | 141 +-------- gdb/c-lang.c | 21 +- gdb/char-print.c | 545 +++++++++++++++++++++++++++++++++++ gdb/char-print.h | 200 +++++++++++++ gdb/f-lang.c | 27 -- gdb/f-lang.h | 28 +- gdb/language.c | 9 - gdb/language.h | 6 - gdb/m2-lang.c | 144 ++-------- gdb/m2-lang.h | 5 - gdb/p-lang.c | 136 ++------- gdb/p-lang.h | 17 -- gdb/rust-lang.c | 95 ++++-- gdb/rust-lang.h | 12 +- gdb/testsuite/gdb.rust/expr.exp | 4 +- gdb/testsuite/gdb.rust/unicode.exp | 3 +- gdb/valprint.c | 576 +------------------------------------ gdb/valprint.h | 2 +- gdbsupport/gdb_obstack.h | 3 - 22 files changed, 943 insertions(+), 1107 deletions(-) create mode 100644 gdb/char-print.c create mode 100644 gdb/char-print.h