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 94f2c73066 Fix leak of set/show verbose doc, avoid xfree of static string new c5603d5063 Change wrap buffering to use a std::string new 7170dadf59 Add a "context" argument to add_setshow_enum_cmd new eedeedd2a5 Introduce ui_file_style new 9162a27c5f Change gdb test suite's TERM setting new cbe5657196 Add output styles to gdb new ef1dfa3644 Reset terminal styles new 80ae204359 Style variable names new 0bb296cb5f Style locations when setting a breakpoint new af79b68d7f Style print_address_symbolic new d47032b7ca Style the gdb welcome message new 47fd17cdc1 Style the "Reading symbols" message new 35fb8261b9 Style addresses new 1d1d0bf76f Make ANSI terminal escape sequences work in TUI new 4a3045920b Use wclrtoeol in tui_show_source_line new 62f29fda90 Highlight source code using GNU Source Highlight new 140a4bc099 Document the "set style" commands
The 16 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/ChangeLog | 178 ++++++++++++++++ gdb/Makefile.in | 17 +- gdb/NEWS | 30 +++ gdb/breakpoint.c | 24 ++- gdb/cli-out.c | 42 +++- gdb/cli-out.h | 3 +- gdb/cli/cli-cmds.c | 2 + gdb/cli/cli-decode.c | 10 +- gdb/cli/cli-style.c | 286 +++++++++++++++++++++++++ gdb/cli/cli-style.h | 95 +++++++++ gdb/command.h | 3 +- gdb/config.in | 6 + gdb/configure | 32 ++- gdb/configure.ac | 25 ++- gdb/disasm.c | 3 +- gdb/doc/ChangeLog | 4 + gdb/doc/gdb.texinfo | 65 ++++++ gdb/mi/mi-out.c | 12 +- gdb/mi/mi-out.h | 3 +- gdb/printcmd.c | 53 +++-- gdb/python/py-framefilter.c | 5 +- gdb/record-btrace.c | 12 +- gdb/skip.c | 6 +- gdb/source-cache.c | 209 ++++++++++++++++++ gdb/source-cache.h | 79 +++++++ gdb/source.c | 41 ++-- gdb/stack.c | 20 +- gdb/symfile.c | 7 +- gdb/testsuite/ChangeLog | 37 ++++ gdb/testsuite/gdb.base/readline.exp | 94 ++++---- gdb/testsuite/gdb.base/style.c | 20 ++ gdb/testsuite/gdb.base/style.exp | 57 +++++ gdb/testsuite/lib/gdb.exp | 7 +- gdb/top.c | 9 +- gdb/tracepoint.c | 7 +- gdb/tui/tui-data.c | 5 +- gdb/tui/tui-io.c | 237 +++++++++++++++++++-- gdb/tui/tui-io.h | 4 +- gdb/tui/tui-out.c | 5 +- gdb/tui/tui-out.h | 2 +- gdb/tui/tui-source.c | 302 ++++++++++++-------------- gdb/tui/tui-winsource.c | 25 +-- gdb/tui/tui.c | 9 + gdb/ui-file.h | 1 + gdb/ui-out.c | 13 +- gdb/ui-out.h | 25 ++- gdb/ui-style.c | 413 ++++++++++++++++++++++++++++++++++++ gdb/ui-style.h | 213 +++++++++++++++++++ gdb/unittests/style-selftests.c | 109 ++++++++++ gdb/utils.c | 168 +++++++++++---- gdb/utils.h | 24 +++ 51 files changed, 2675 insertions(+), 383 deletions(-) create mode 100644 gdb/cli/cli-style.c create mode 100644 gdb/cli/cli-style.h create mode 100644 gdb/source-cache.c create mode 100644 gdb/source-cache.h create mode 100644 gdb/testsuite/gdb.base/style.c create mode 100644 gdb/testsuite/gdb.base/style.exp create mode 100644 gdb/ui-style.c create mode 100644 gdb/ui-style.h create mode 100644 gdb/unittests/style-selftests.c