+2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ Clarify documentation about Solaris sed quantifier restriction.
+ * doc/autoconf.texi (Limitations of Usual Tools) <sed>: '*' does
+ not work after subexpressions, \{M,N\} only after one-character
+ expressions. From GCC PR 38923.
+
2009-09-21 Eric Blake <ebb9@byu.net>
Fit configure output in 80 columns.
quite portable to current hosts, but was not supported by some ancient
@command{sed} implementations like SVR3.
-Some @command{sed} implementations, e.g., Solaris,
-restrict the special role of the asterisk to one-character regular expressions.
-This may lead to unexpected behavior:
+Some @command{sed} implementations, e.g., Solaris, restrict the special
+role of the asterisk @samp{*} to one-character regular expressions and
+back-references, and the special role of interval expressions
+@samp{\@{@var{m}\@}}, @samp{\@{@var{m},\@}}, or @samp{\@{@var{m},@var{n}\@}}
+to one-character regular expressions. This may lead to unexpected behavior:
@example
$ @kbd{echo '1*23*4' | /usr/bin/sed 's/\(.\)*/x/g'}