Use \versionchanged, not \versionadded.

This commit is contained in:
Martin v. Löwis 2003-05-03 10:59:13 +00:00
parent 7829e5661c
commit ec31047c0c

View file

@ -915,7 +915,7 @@ RuntimeError: maximum recursion limit exceeded
You can often restructure your regular expression to avoid recursion. You can often restructure your regular expression to avoid recursion.
\versionadded[Simple uses of the \regexp{*?} pattern are now \versionchanged[Simple uses of the \regexp{*?} pattern are now
special-cased to avoid recursion. Thus, the above regular expression special-cased to avoid recursion. Thus, the above regular expression
can avoid recursion by being recast as \regexp{Begin [a-zA-Z0-9_ ]*?end}. can avoid recursion by being recast as \regexp{Begin [a-zA-Z0-9_ ]*?end}.
As a further benefit, such regular expressions will run faster than As a further benefit, such regular expressions will run faster than