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 338e0b05d8f Fix grammar in "Debug Names" node of the manual new 6447969d0ac Add an option with a color type.
The 1 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 | 2 + gdb/NEWS | 33 ++ gdb/cli/cli-cmds.c | 6 + gdb/cli/cli-decode.c | 174 +++++++++ gdb/cli/cli-decode.h | 21 + gdb/cli/cli-option.c | 42 ++ gdb/cli/cli-option.h | 21 + gdb/cli/cli-setshow.c | 21 + gdb/cli/cli-style.c | 49 +-- gdb/cli/cli-style.h | 4 +- gdb/command.h | 26 +- gdb/doc/gdb.texinfo | 46 ++- gdb/doc/guile.texi | 104 +++++ gdb/doc/python.texi | 98 +++++ gdb/guile/guile-internal.h | 9 + gdb/guile/guile.c | 1 + gdb/guile/scm-color.c | 427 +++++++++++++++++++++ gdb/guile/scm-param.c | 33 +- gdb/python/py-color.c | 336 ++++++++++++++++ .../gdb.cp/expand-sals.cc => python/py-color.h} | 52 +-- gdb/python/py-param.c | 40 +- gdb/python/python.c | 7 + gdb/testsuite/gdb.base/default.exp | 8 +- gdb/testsuite/gdb.base/style.exp | 197 ++++++++++ gdb/testsuite/gdb.guile/scm-color.exp | 110 ++++++ gdb/testsuite/gdb.guile/scm-parameter.exp | 47 +++ gdb/testsuite/gdb.python/py-color.exp | 100 +++++ gdb/testsuite/gdb.python/py-parameter.exp | 53 +++ gdb/testsuite/lib/gdb-utils.exp | 26 +- gdb/testsuite/lib/gdb.exp | 3 +- gdb/top.c | 14 + gdb/ui-style.c | 353 +++++++++++++---- gdb/ui-style.h | 157 +++++++- gdb/unittests/style-selftests.c | 6 +- 34 files changed, 2419 insertions(+), 207 deletions(-) create mode 100644 gdb/guile/scm-color.c create mode 100644 gdb/python/py-color.c copy gdb/{testsuite/gdb.cp/expand-sals.cc => python/py-color.h} (58%) create mode 100644 gdb/testsuite/gdb.guile/scm-color.exp create mode 100644 gdb/testsuite/gdb.python/py-color.exp