This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/palves/cli-options in repository binutils-gdb.
discards e33bd5169a Introduce generic CLI options framework, support "print -opt [...] discards d8de975eab number_or_range_parser::get_number, don't treat "1 -" as a range new 6ac4de818d check_for_argument new a869743379 Fix unlimited abbreviations new 60b3680d31 Fix "set uinteger 1 1" new 8e49743963 Remove "show" command completers new 9efb6771b0 Test settings framework (gdb.base/settings.exp) new 024a9a865b boolean/auto-boolean commands, "o" is ambiguous new bf73ddaf4e number_or_range_parser::get_number, don't treat "1 -" as a range new 1a83ea40f1 Introduce generic CLI options framework, support "print -opt [...] new f935cf170c Use parse_and_eval_long in set commands new adc49059b4 Fix "thread apply -ascending" new ae25295de3 Fix help indentation new 71bbae02be Test "backtrace" options new 8cce3a92b7 "bt full/etc" completer
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (e33bd5169a) \ N -- N -- N refs/heads/users/palves/cli-options (8cce3a92b7)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 13 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/ax-gdb.c | 2 - gdb/breakpoint.c | 5 +- gdb/cli/cli-decode.c | 74 ++- gdb/cli/cli-option.c | 47 +- gdb/cli/cli-option.h | 2 +- gdb/cli/cli-setshow.c | 66 ++- gdb/cli/cli-setshow.h | 11 +- gdb/cli/cli-utils.c | 3 +- gdb/compile/compile.c | 105 ++-- gdb/maint-test-settings.c | 259 +++++++++ gdb/printcmd.c | 65 +-- gdb/stack.c | 84 ++- gdb/testsuite/gdb.base/completion.exp | 2 +- gdb/testsuite/gdb.base/options.exp | 106 +++- .../{solib-probes-nosharedlibrary.c => settings.c} | 3 +- gdb/testsuite/gdb.base/settings.exp | 587 +++++++++++++++++++++ gdb/thread.c | 56 +- gdb/valprint.h | 13 +- 19 files changed, 1262 insertions(+), 229 deletions(-) create mode 100644 gdb/maint-test-settings.c copy gdb/testsuite/gdb.base/{solib-probes-nosharedlibrary.c => settings.c} (97%) create mode 100644 gdb/testsuite/gdb.base/settings.exp