summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authornigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:39:17 +0000
committernigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:39:17 +0000
commit1622a3e7058dec7de74889c69595693ac0c64187 (patch)
tree871101eb39b4c1611359f849f7e8b1647a291e30 /ChangeLog
parentb72ae7c414f315e8915948fbea7b391a490fa946 (diff)
downloadpcre-1622a3e7058dec7de74889c69595693ac0c64187.tar.gz
Load pcre-2.08a into code/trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@41 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cad637d..cd02638 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,28 @@ ChangeLog for PCRE
------------------
+Version 2.09 14-Sep-99
+----------------------
+
+1. Add support for the /+ modifier to perltest (to output $` like it does in
+pcretest).
+
+2. Add support for the /g modifier to perltest.
+
+3. Fix pcretest so that it behaves even more like Perl for /g when the pattern
+matches null strings.
+
+4. Fix perltest so that it doesn't do unwanted things when fed an empty
+pattern. Perl treats empty patterns specially - it reuses the most recent
+pattern, which is not what we want. Replace // by /(?#)/ in order to avoid this
+effect.
+
+5. The POSIX interface was broken in that it was just handing over the POSIX
+captured string vector to pcre_exec(), but (since release 2.00) PCRE has
+required a bigger vector, with some working space on the end. This means that
+the POSIX wrapper now has to get and free some memory, and copy the results.
+
+
Version 2.08 31-Aug-99
----------------------