From: Andrei Zmievski Date: Thu, 6 Apr 2006 21:35:27 +0000 (+0000) Subject: I guess we only need this on HEAD. X-Git-Tag: php-5.1.3RC3~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4033bfbda01604b1c7c5fc4048af83d316d70ab6;p=php I guess we only need this on HEAD. --- diff --git a/ext/pcre/TODO b/ext/pcre/TODO deleted file mode 100644 index 1000c64105..0000000000 --- a/ext/pcre/TODO +++ /dev/null @@ -1,20 +0,0 @@ -- Allow NULL for $matches argument (helps when using preg_match only for - match condition) - might not be possible - -- http://bugs.php.net/bug.php?id=36975 - -- I'd love to see a pattern modifer which says "don't fill $matches except - for the overall match and any specific named captures". This would allow - (?: ...) to be avoided in a lot of cases. - - This could make for non-trivial speed enhancements with regexes that have - a lot of parens when working on long strings, since you'd not have to - copy them multiple times to the $matches array. - - Also, it makes $matches much cleaner after a match where you've named the - captures you're interested in. - - (Note that this would not involve the use of PCRE_NO_AUTO_CAPTURE, as - that would change the semantics of backreferences) - -