----
Each of the duplication symbols ('+', '*', '?', and intervals) can
be suffixed by the repetition modifier '?' (<question-mark>),
in which case matching behavior for that repetition shall be changed
from the leftmost longest possible match to the leftmost shortest
possible match, including the null match (see A.9 Regular
Expressions ). For example, the ERE ".*c" matches up to and
including the last character ('c') in the string "abc abc", whereas
the ERE ".*?c" matches up to and including the first character 'c',
the third character in the string.
----
and was told:
----
Support for this feature can't happen unless and until GNU regex and
GNU dfa, which are both part of Gnulib, support it. So you might
consider asking on the bug-gnulib list what their plans are for it.
----
so - what are the plans, if any, for supporting that functionality?