From 227dd356090fb91bd2dd2b19534ce2b3daa22e1d Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Tue, 12 Aug 2014 14:33:25 +1200 Subject: [PATCH] Fix incorrect examples of regex %rename --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 37868d8fe..9fef3ae06 100644 --- a/CHANGES +++ b/CHANGES @@ -2088,8 +2088,8 @@ Version 2.0.2 (20 February 2011) Fix handling of multiple regex-using %renames attached to the same declaration. For example, now - %rename("%(regex/^Set(.*)/put\\1/)s") ""; - %rename("%(regex/^Get(.*)/get\\1/)s") ""; + %rename("%(regex:/^Set(.*)/put\\1/)s") ""; + %rename("%(regex:/^Get(.*)/get\\1/)s") ""; works as expected whereas before only the last anonymous rename was taken into account.