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 e874b4b910 fix completion.exp discards 5a43c6199f frame-arguments discards a894e9c663 fix thread-find discards 483300051f fix gdb.pascal/float discards b2fbf1fb1a fix compile discards 5058c21b84 thread apply loops discards 578d317e7c Fix print -1 and "print -a" (ambiguous) discards 72db75b94f Introduce generic CLI options framework, support "print -opt [...] new 6ade7c185f Fix latent bug in custom word point completion handling new 2e4b5f3614 Fix latent bug with custom word point completers new b6ffeacffb Introduce generic CLI options framework, support "print -opt [...] new e25c2c551d bt docs new 5a7ce840c6 frame-apply more options new 6eea66bf90 thread|frame apply completers
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 (e874b4b910) \ N -- N -- N refs/heads/users/palves/cli-options (6eea66bf90)
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 6 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/cli/cli-decode.c | 2 + gdb/cli/cli-option.c | 95 +++++++++-- gdb/cli/cli-option.h | 11 +- gdb/cli/cli-setshow.c | 2 +- gdb/cli/cli-utils.c | 13 +- gdb/compile/compile.c | 2 +- gdb/completer.c | 51 +++++- gdb/completer.h | 21 ++- gdb/doc/gdb.texinfo | 211 +++++++++++++++++++++--- gdb/frame.c | 95 ++++++----- gdb/frame.h | 15 ++ gdb/maint.c | 171 ++++++++++++++++++++ gdb/printcmd.c | 51 +++--- gdb/stack.c | 165 ++++++++++++------- gdb/testsuite/gdb.base/options.exp | 312 ++++++++++++++++++++++++++++++++++++ gdb/testsuite/gdb.pascal/floats.exp | 8 +- gdb/thread.c | 137 ++++++++++++---- gdb/unittests/cli-utils-selftests.c | 8 +- gdb/valprint.c | 9 +- gdb/valprint.h | 5 +- 20 files changed, 1156 insertions(+), 228 deletions(-) create mode 100644 gdb/testsuite/gdb.base/options.exp