This patch is a follow-up for D58499. It allows the remaining forms of providing values
for options to be used at the end of a group. This includes both prefix variants
of options and the "opt=val" form.
With this fix, it is possible to better follow the way GNU binutils tools handle grouping
options. For example, the -j option in objdump can be used in any of the following ways:
$ objdump -d -j .text a.o $ objdump -d -j.text a.o $ objdump -dj .text a.o $ objdump -dj.text a.o
The indentation here looks off compared to the old style?